Skip to content
This repository was archived by the owner on Nov 7, 2020. It is now read-only.

Commit 56573bf

Browse files
committed
Updates to README
1 parent 054223b commit 56573bf

File tree

3 files changed

+66
-2
lines changed

3 files changed

+66
-2
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
*.svn*
22
.project
33
.pydevproject
4+
*.pyc
5+
PySQLPool/dist/*
6+
PySQLPool/build/*

README

+3-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ Questions/Answers can be submitted at https://answers.edge.launchpad.net/pysqlpo
4343
Links
4444
=========
4545

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/
4849

4950
Documentation: http://packages.python.org/PySQLPool/

README.rst

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
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/

0 commit comments

Comments
 (0)