This repository was archived by the owner on Nov 7, 2020. It is now read-only.
File tree 3 files changed +66
-2
lines changed
3 files changed +66
-2
lines changed Original file line number Diff line number Diff line change 1
1
* .svn *
2
2
.project
3
3
.pydevproject
4
+ * .pyc
5
+ PySQLPool /dist /*
6
+ PySQLPool /build /*
Original file line number Diff line number Diff line change @@ -43,7 +43,8 @@ Questions/Answers can be submitted at https://answers.edge.launchpad.net/pysqlpo
43
43
Links
44
44
=========
45
45
46
- Homepages: http://code.google.com/p/pysqlpool/
47
- https://launchpad.net/pysqlpool/
46
+ Homepages: https://github.com/nerdynick/PySQLPool
47
+ http://code.google.com/p/pysqlpool/
48
+ https://launchpad.net/pysqlpool/
48
49
49
50
Documentation: http://packages.python.org/PySQLPool/
Original file line number Diff line number Diff line change
1
+ =================
2
+ What is PySQLPool
3
+ =================
4
+
5
+ PySQLPool is at the heart a MySQL Connection Pooling library for use with the MySQLDB Python bindings.
6
+
7
+ Part of the PySQLPool is the MySQL Query class that handles all the thread safe connection locking,
8
+ connection management in association with the Connection Manager, and cursor management.
9
+ Leaving all the work you have to do in your code is write MySQL Queries. Saving you hours of work.
10
+
11
+ ============
12
+ Installation
13
+ ============
14
+
15
+ Linux/Mac OS X
16
+ ==============
17
+ cd PySQLPool
18
+ python setup.py build
19
+ sudo python setup.py install
20
+
21
+ Windows
22
+ =======
23
+ cd PySQLPool
24
+ python setup.py build
25
+ python setup.py install
26
+
27
+ ====================
28
+ How to Use PySQLPool
29
+ ====================
30
+
31
+ Documentation can be read locally at doc/index.rst or via the web at http://packages.python.org/PySQLPool
32
+
33
+ You can also generate your own html docs via the make file in doc/. This will produce the same docs as
34
+ hosted on the website.
35
+
36
+ =======
37
+ License
38
+ =======
39
+
40
+ PySQLPool is licensed under the LGPL. You can find out more in the included LICENSE file.
41
+
42
+ =================================================
43
+ Got a Bug, Question, or Idea to Improve PySQLPool
44
+ =================================================
45
+
46
+ Bugs can be submitted at https://bugs.launchpad.net/pysqlpool
47
+ Blueprints/Ideas can be submitted at https://blueprints.launchpad.net/pysqlpool
48
+ Questions/Answers can be submitted at https://answers.edge.launchpad.net/pysqlpool
49
+
50
+ =====
51
+ Links
52
+ =====
53
+
54
+ Homepages:
55
+ * https://github.com/nerdynick/PySQLPool
56
+ * http://code.google.com/p/pysqlpool/
57
+ * https://launchpad.net/pysqlpool/
58
+
59
+ Documentation:
60
+ * http://packages.python.org/PySQLPool/
You can’t perform that action at this time.
0 commit comments