Permalink
Browse files

README updated

  • Loading branch information...
1 parent 10eff36 commit 8409805cf11747a07cd73a0a921c7b9fba063bf4 @wang502 committed May 11, 2016
Showing with 72,598 additions and 3 deletions.
  1. +28 −0 PyGreSQL-5.0/LICENSE.txt
  2. +26 −0 PyGreSQL-5.0/MANIFEST.in
  3. +31 −0 PyGreSQL-5.0/PKG-INFO
  4. +31 −0 PyGreSQL-5.0/PyGreSQL.egg-info/PKG-INFO
  5. +180 −0 PyGreSQL-5.0/PyGreSQL.egg-info/SOURCES.txt
  6. +1 −0 PyGreSQL-5.0/PyGreSQL.egg-info/dependency_links.txt
  7. +1 −0 PyGreSQL-5.0/PyGreSQL.egg-info/not-zip-safe
  8. +3 −0 PyGreSQL-5.0/PyGreSQL.egg-info/top_level.txt
  9. +27 −0 PyGreSQL-5.0/README.rst
  10. +2,452 −0 PyGreSQL-5.0/build/lib.macosx-10.11-intel-2.7/pg.py
  11. +1,694 −0 PyGreSQL-5.0/build/lib.macosx-10.11-intel-2.7/pgdb.py
  12. +192 −0 PyGreSQL-5.0/docs/Makefile
  13. +32 −0 PyGreSQL-5.0/docs/_build/html/_sources/announce.txt
  14. +17 −0 PyGreSQL-5.0/docs/_build/html/_sources/community/index.txt
  15. +493 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/changelog.txt
  16. +17 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/examples.txt
  17. +43 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/general.txt
  18. +24 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/index.txt
  19. +189 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/install.txt
  20. +388 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/adaptation.txt
  21. +440 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/connection.txt
  22. +94 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/db_types.txt
  23. +850 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/db_wrapper.txt
  24. +19 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/index.txt
  25. +24 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/introduction.txt
  26. +183 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/large_objects.txt
  27. +783 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/module.txt
  28. +119 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/notification.txt
  29. +129 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/query.txt
  30. +356 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/adaptation.txt
  31. +94 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/connection.txt
  32. +394 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/cursor.txt
  33. +17 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/index.txt
  34. +19 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/introduction.txt
  35. +175 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/module.txt
  36. +90 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/typecache.txt
  37. +226 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/types.txt
  38. +154 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/postgres/advanced.txt
  39. +360 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/postgres/basic.txt
  40. +162 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/postgres/func.txt
  41. +17 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/postgres/index.txt
  42. +134 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/postgres/syscat.txt
  43. +277 −0 PyGreSQL-5.0/docs/_build/html/_sources/contents/tutorial.txt
  44. +31 −0 PyGreSQL-5.0/docs/_build/html/_sources/copyright.txt
  45. +24 −0 PyGreSQL-5.0/docs/_build/html/_sources/download/index.txt
  46. +15 −0 PyGreSQL-5.0/docs/_build/html/_sources/index.txt
  47. BIN PyGreSQL-5.0/docs/_build/html/_static/ajax-loader.gif
  48. +599 −0 PyGreSQL-5.0/docs/_build/html/_static/basic.css
  49. +2,096 −0 PyGreSQL-5.0/docs/_build/html/_static/cloud.css
  50. +658 −0 PyGreSQL-5.0/docs/_build/html/_static/cloud.js
  51. BIN PyGreSQL-5.0/docs/_build/html/_static/comment-bright.png
  52. BIN PyGreSQL-5.0/docs/_build/html/_static/comment-close.png
  53. BIN PyGreSQL-5.0/docs/_build/html/_static/comment.png
  54. +263 −0 PyGreSQL-5.0/docs/_build/html/_static/doctools.js
  55. BIN PyGreSQL-5.0/docs/_build/html/_static/down-pressed.png
  56. BIN PyGreSQL-5.0/docs/_build/html/_static/down.png
  57. BIN PyGreSQL-5.0/docs/_build/html/_static/favicon.ico
  58. BIN PyGreSQL-5.0/docs/_build/html/_static/file.png
  59. BIN PyGreSQL-5.0/docs/_build/html/_static/icon-caution.png
  60. BIN PyGreSQL-5.0/docs/_build/html/_static/icon-danger.png
  61. BIN PyGreSQL-5.0/docs/_build/html/_static/icon-deprecated.png
  62. BIN PyGreSQL-5.0/docs/_build/html/_static/icon-note.png
  63. BIN PyGreSQL-5.0/docs/_build/html/_static/icon-seealso.png
  64. BIN PyGreSQL-5.0/docs/_build/html/_static/icon-todo.png
  65. BIN PyGreSQL-5.0/docs/_build/html/_static/icon-warning.png
  66. +10,308 −0 PyGreSQL-5.0/docs/_build/html/_static/jquery-1.11.1.js
  67. +117 −0 PyGreSQL-5.0/docs/_build/html/_static/jquery.cookie.js
  68. +4 −0 PyGreSQL-5.0/docs/_build/html/_static/jquery.js
  69. BIN PyGreSQL-5.0/docs/_build/html/_static/minus.png
  70. BIN PyGreSQL-5.0/docs/_build/html/_static/plus.png
  71. +63 −0 PyGreSQL-5.0/docs/_build/html/_static/pygments.css
  72. +89 −0 PyGreSQL-5.0/docs/_build/html/_static/pygresql.css
  73. BIN PyGreSQL-5.0/docs/_build/html/_static/pygresql.png
  74. +651 −0 PyGreSQL-5.0/docs/_build/html/_static/searchtools.js
  75. +999 −0 PyGreSQL-5.0/docs/_build/html/_static/underscore-1.3.1.js
  76. +31 −0 PyGreSQL-5.0/docs/_build/html/_static/underscore.js
  77. BIN PyGreSQL-5.0/docs/_build/html/_static/up-pressed.png
  78. BIN PyGreSQL-5.0/docs/_build/html/_static/up.png
  79. +808 −0 PyGreSQL-5.0/docs/_build/html/_static/websupport.js
  80. +153 −0 PyGreSQL-5.0/docs/_build/html/announce.html
  81. +191 −0 PyGreSQL-5.0/docs/_build/html/community/index.html
  82. +757 −0 PyGreSQL-5.0/docs/_build/html/contents/changelog.html
  83. +171 −0 PyGreSQL-5.0/docs/_build/html/contents/examples.html
  84. +196 −0 PyGreSQL-5.0/docs/_build/html/contents/general.html
  85. +193 −0 PyGreSQL-5.0/docs/_build/html/contents/index.html
  86. +353 −0 PyGreSQL-5.0/docs/_build/html/contents/install.html
  87. +580 −0 PyGreSQL-5.0/docs/_build/html/contents/pg/adaptation.html
  88. +901 −0 PyGreSQL-5.0/docs/_build/html/contents/pg/connection.html
  89. +296 −0 PyGreSQL-5.0/docs/_build/html/contents/pg/db_types.html
  90. +1,401 −0 PyGreSQL-5.0/docs/_build/html/contents/pg/db_wrapper.html
  91. +284 −0 PyGreSQL-5.0/docs/_build/html/contents/pg/index.html
  92. +182 −0 PyGreSQL-5.0/docs/_build/html/contents/pg/introduction.html
  93. +491 −0 PyGreSQL-5.0/docs/_build/html/contents/pg/large_objects.html
  94. +1,334 −0 PyGreSQL-5.0/docs/_build/html/contents/pg/module.html
  95. +302 −0 PyGreSQL-5.0/docs/_build/html/contents/pg/notification.html
  96. +394 −0 PyGreSQL-5.0/docs/_build/html/contents/pg/query.html
  97. +548 −0 PyGreSQL-5.0/docs/_build/html/contents/pgdb/adaptation.html
  98. +302 −0 PyGreSQL-5.0/docs/_build/html/contents/pgdb/connection.html
  99. +683 −0 PyGreSQL-5.0/docs/_build/html/contents/pgdb/cursor.html
  100. +218 −0 PyGreSQL-5.0/docs/_build/html/contents/pgdb/index.html
  101. +176 −0 PyGreSQL-5.0/docs/_build/html/contents/pgdb/introduction.html
  102. +407 −0 PyGreSQL-5.0/docs/_build/html/contents/pgdb/module.html
  103. +293 −0 PyGreSQL-5.0/docs/_build/html/contents/pgdb/typecache.html
  104. +462 −0 PyGreSQL-5.0/docs/_build/html/contents/pgdb/types.html
  105. +319 −0 PyGreSQL-5.0/docs/_build/html/contents/postgres/advanced.html
  106. +511 −0 PyGreSQL-5.0/docs/_build/html/contents/postgres/basic.html
  107. +326 −0 PyGreSQL-5.0/docs/_build/html/contents/postgres/func.html
  108. +215 −0 PyGreSQL-5.0/docs/_build/html/contents/postgres/index.html
  109. +300 −0 PyGreSQL-5.0/docs/_build/html/contents/postgres/syscat.html
  110. +428 −0 PyGreSQL-5.0/docs/_build/html/contents/tutorial.html
  111. +137 −0 PyGreSQL-5.0/docs/_build/html/copyright.html
  112. +256 −0 PyGreSQL-5.0/docs/_build/html/download/index.html
  113. +1,272 −0 PyGreSQL-5.0/docs/_build/html/genindex.html
  114. +151 −0 PyGreSQL-5.0/docs/_build/html/index.html
  115. +155 −0 PyGreSQL-5.0/docs/_build/html/py-modindex.html
  116. +143 −0 PyGreSQL-5.0/docs/_build/html/search.html
  117. +1 −0 PyGreSQL-5.0/docs/_build/html/searchindex.js
  118. BIN PyGreSQL-5.0/docs/_static/favicon.ico
  119. +86 −0 PyGreSQL-5.0/docs/_static/pygresql.css_t
  120. BIN PyGreSQL-5.0/docs/_static/pygresql.png
  121. +58 −0 PyGreSQL-5.0/docs/_templates/layout.html
  122. +4 −0 PyGreSQL-5.0/docs/about.rst
  123. +32 −0 PyGreSQL-5.0/docs/announce.rst
  124. +15 −0 PyGreSQL-5.0/docs/community/bugtracker.rst
  125. +11 −0 PyGreSQL-5.0/docs/community/homes.rst
  126. +17 −0 PyGreSQL-5.0/docs/community/index.rst
  127. +11 −0 PyGreSQL-5.0/docs/community/mailinglist.rst
  128. +12 −0 PyGreSQL-5.0/docs/community/source.rst
  129. +18 −0 PyGreSQL-5.0/docs/community/support.rst
  130. +314 −0 PyGreSQL-5.0/docs/conf.py
  131. +493 −0 PyGreSQL-5.0/docs/contents/changelog.rst
  132. +17 −0 PyGreSQL-5.0/docs/contents/examples.rst
  133. +43 −0 PyGreSQL-5.0/docs/contents/general.rst
  134. +24 −0 PyGreSQL-5.0/docs/contents/index.rst
  135. +189 −0 PyGreSQL-5.0/docs/contents/install.rst
  136. +388 −0 PyGreSQL-5.0/docs/contents/pg/adaptation.rst
  137. +440 −0 PyGreSQL-5.0/docs/contents/pg/connection.rst
  138. +94 −0 PyGreSQL-5.0/docs/contents/pg/db_types.rst
  139. +850 −0 PyGreSQL-5.0/docs/contents/pg/db_wrapper.rst
  140. +19 −0 PyGreSQL-5.0/docs/contents/pg/index.rst
  141. +24 −0 PyGreSQL-5.0/docs/contents/pg/introduction.rst
  142. +183 −0 PyGreSQL-5.0/docs/contents/pg/large_objects.rst
  143. +783 −0 PyGreSQL-5.0/docs/contents/pg/module.rst
  144. +119 −0 PyGreSQL-5.0/docs/contents/pg/notification.rst
  145. +129 −0 PyGreSQL-5.0/docs/contents/pg/query.rst
  146. +356 −0 PyGreSQL-5.0/docs/contents/pgdb/adaptation.rst
  147. +94 −0 PyGreSQL-5.0/docs/contents/pgdb/connection.rst
  148. +394 −0 PyGreSQL-5.0/docs/contents/pgdb/cursor.rst
  149. +17 −0 PyGreSQL-5.0/docs/contents/pgdb/index.rst
  150. +19 −0 PyGreSQL-5.0/docs/contents/pgdb/introduction.rst
  151. +175 −0 PyGreSQL-5.0/docs/contents/pgdb/module.rst
  152. +90 −0 PyGreSQL-5.0/docs/contents/pgdb/typecache.rst
  153. +226 −0 PyGreSQL-5.0/docs/contents/pgdb/types.rst
  154. +154 −0 PyGreSQL-5.0/docs/contents/postgres/advanced.rst
  155. +360 −0 PyGreSQL-5.0/docs/contents/postgres/basic.rst
  156. +162 −0 PyGreSQL-5.0/docs/contents/postgres/func.rst
  157. +17 −0 PyGreSQL-5.0/docs/contents/postgres/index.rst
  158. +134 −0 PyGreSQL-5.0/docs/contents/postgres/syscat.rst
  159. +277 −0 PyGreSQL-5.0/docs/contents/tutorial.rst
  160. +31 −0 PyGreSQL-5.0/docs/copyright.rst
  161. +29 −0 PyGreSQL-5.0/docs/download/download.rst
  162. +27 −0 PyGreSQL-5.0/docs/download/files.rst
  163. +24 −0 PyGreSQL-5.0/docs/download/index.rst
  164. +15 −0 PyGreSQL-5.0/docs/index.rst
  165. +263 −0 PyGreSQL-5.0/docs/make.bat
  166. +2,452 −0 PyGreSQL-5.0/pg.py
  167. +1,694 −0 PyGreSQL-5.0/pgdb.py
  168. +6,054 −0 PyGreSQL-5.0/pgmodule.c
  169. +128 −0 PyGreSQL-5.0/pgtypes.h
  170. +136 −0 PyGreSQL-5.0/py3c.h
  171. +14 −0 PyGreSQL-5.0/setup.cfg
  172. +210 −0 PyGreSQL-5.0/setup.py
  173. +21 −0 PyGreSQL-5.0/tests/__init__.py
  174. +861 −0 PyGreSQL-5.0/tests/dbapi20.py
  175. +343 −0 PyGreSQL-5.0/tests/test_classic.py
  176. +1,864 −0 PyGreSQL-5.0/tests/test_classic_connection.py
  177. +4,402 −0 PyGreSQL-5.0/tests/test_classic_dbwrapper.py
  178. +1,068 −0 PyGreSQL-5.0/tests/test_classic_functions.py
  179. +450 −0 PyGreSQL-5.0/tests/test_classic_largeobj.py
  180. +447 −0 PyGreSQL-5.0/tests/test_classic_notification.py
  181. +1,211 −0 PyGreSQL-5.0/tests/test_dbapi20.py
  182. +598 −0 PyGreSQL-5.0/tests/test_dbapi20_copy.py
  183. +178 −0 PyGreSQL-5.0/tests/test_tutorial.py
  184. +7 −3 README.md
View
@@ -0,0 +1,28 @@
+Written by D'Arcy J.M. Cain (darcy@druid.net)
+
+Based heavily on code written by Pascal Andre (andre@chimay.via.ecp.fr)
+
+Copyright (c) 1995, Pascal Andre
+
+Further modifications copyright (c) 1997-2008 by D'Arcy J.M. Cain
+(darcy@PyGreSQL.org)
+
+Further modifications copyright (c) 2009-2016 by the PyGreSQL team.
+
+Permission to use, copy, modify, and distribute this software and its
+documentation for any purpose, without fee, and without a written agreement
+is hereby granted, provided that the above copyright notice and this
+paragraph and the following two paragraphs appear in all copies. In
+this license the term "AUTHORS" refers to anyone who has contributed code
+to PyGreSQL.
+
+IN NO EVENT SHALL THE AUTHORS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
+SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS,
+ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
+AUTHORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+THE AUTHORS SPECIFICALLY DISCLAIM ANY WARRANTIES, INCLUDING, BUT NOT LIMITED
+TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE
+AUTHORS HAVE NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
+ENHANCEMENTS, OR MODIFICATIONS.
View
@@ -0,0 +1,26 @@
+
+include pgmodule.c
+include pgtypes.h
+include py3c.h
+
+include pg.py
+include pgdb.py
+include setup.py
+
+include setup.cfg
+
+include README.rst
+include LICENSE.txt
+
+recursive-include tests *.py
+
+include docs/Makefile
+include docs/make.bat
+include docs/*.py
+include docs/*.rst
+recursive-include docs/community *.rst
+recursive-include docs/contents *.rst
+recursive-include docs/download *.rst
+recursive-include docs/_static *.css_t *.ico *.png
+recursive-include docs/_templates *.html
+recursive-include docs/_build/html *.css *.gif *.html *.ico *.js *.png *.txt
View
@@ -0,0 +1,31 @@
+Metadata-Version: 1.1
+Name: PyGreSQL
+Version: 5.0
+Summary: Python PostgreSQL Interfaces
+Home-page: http://www.pygresql.org
+Author: D'Arcy J. M. Cain
+Author-email: darcy@PyGreSQL.org
+License: Python
+Download-URL: ftp://ftp.pygresql.org/pub/distrib/
+Description: PyGreSQL is an open-source Python module that interfaces to a
+ PostgreSQL database. It embeds the PostgreSQL query library to allow
+ easy use of the powerful PostgreSQL features from a Python script.
+Keywords: pygresql postgresql database api dbapi
+Platform: any
+Classifier: Development Status :: 6 - Mature
+Classifier: Intended Audience :: Developers
+Classifier: License :: OSI Approved :: Python Software Foundation License
+Classifier: Operating System :: OS Independent
+Classifier: Programming Language :: C
+Classifier: Programming Language :: Python
+Classifier: Programming Language :: Python :: 2
+Classifier: Programming Language :: Python :: 2.6
+Classifier: Programming Language :: Python :: 2.7
+Classifier: Programming Language :: Python :: 3
+Classifier: Programming Language :: Python :: 3.3
+Classifier: Programming Language :: Python :: 3.4
+Classifier: Programming Language :: Python :: 3.5
+Classifier: Programming Language :: SQL
+Classifier: Topic :: Database
+Classifier: Topic :: Database :: Front-Ends
+Classifier: Topic :: Software Development :: Libraries :: Python Modules
@@ -0,0 +1,31 @@
+Metadata-Version: 1.1
+Name: PyGreSQL
+Version: 5.0
+Summary: Python PostgreSQL Interfaces
+Home-page: http://www.pygresql.org
+Author: D'Arcy J. M. Cain
+Author-email: darcy@PyGreSQL.org
+License: Python
+Download-URL: ftp://ftp.pygresql.org/pub/distrib/
+Description: PyGreSQL is an open-source Python module that interfaces to a
+ PostgreSQL database. It embeds the PostgreSQL query library to allow
+ easy use of the powerful PostgreSQL features from a Python script.
+Keywords: pygresql postgresql database api dbapi
+Platform: any
+Classifier: Development Status :: 6 - Mature
+Classifier: Intended Audience :: Developers
+Classifier: License :: OSI Approved :: Python Software Foundation License
+Classifier: Operating System :: OS Independent
+Classifier: Programming Language :: C
+Classifier: Programming Language :: Python
+Classifier: Programming Language :: Python :: 2
+Classifier: Programming Language :: Python :: 2.6
+Classifier: Programming Language :: Python :: 2.7
+Classifier: Programming Language :: Python :: 3
+Classifier: Programming Language :: Python :: 3.3
+Classifier: Programming Language :: Python :: 3.4
+Classifier: Programming Language :: Python :: 3.5
+Classifier: Programming Language :: SQL
+Classifier: Topic :: Database
+Classifier: Topic :: Database :: Front-Ends
+Classifier: Topic :: Software Development :: Libraries :: Python Modules
@@ -0,0 +1,180 @@
+LICENSE.txt
+MANIFEST.in
+README.rst
+pg.py
+pgdb.py
+pgmodule.c
+pgtypes.h
+py3c.h
+setup.cfg
+setup.py
+PyGreSQL.egg-info/PKG-INFO
+PyGreSQL.egg-info/SOURCES.txt
+PyGreSQL.egg-info/dependency_links.txt
+PyGreSQL.egg-info/not-zip-safe
+PyGreSQL.egg-info/top_level.txt
+docs/Makefile
+docs/about.rst
+docs/announce.rst
+docs/conf.py
+docs/copyright.rst
+docs/index.rst
+docs/make.bat
+docs/_build/html/announce.html
+docs/_build/html/copyright.html
+docs/_build/html/genindex.html
+docs/_build/html/index.html
+docs/_build/html/py-modindex.html
+docs/_build/html/search.html
+docs/_build/html/searchindex.js
+docs/_build/html/_sources/announce.txt
+docs/_build/html/_sources/copyright.txt
+docs/_build/html/_sources/index.txt
+docs/_build/html/_sources/community/index.txt
+docs/_build/html/_sources/contents/changelog.txt
+docs/_build/html/_sources/contents/examples.txt
+docs/_build/html/_sources/contents/general.txt
+docs/_build/html/_sources/contents/index.txt
+docs/_build/html/_sources/contents/install.txt
+docs/_build/html/_sources/contents/tutorial.txt
+docs/_build/html/_sources/contents/pg/adaptation.txt
+docs/_build/html/_sources/contents/pg/connection.txt
+docs/_build/html/_sources/contents/pg/db_types.txt
+docs/_build/html/_sources/contents/pg/db_wrapper.txt
+docs/_build/html/_sources/contents/pg/index.txt
+docs/_build/html/_sources/contents/pg/introduction.txt
+docs/_build/html/_sources/contents/pg/large_objects.txt
+docs/_build/html/_sources/contents/pg/module.txt
+docs/_build/html/_sources/contents/pg/notification.txt
+docs/_build/html/_sources/contents/pg/query.txt
+docs/_build/html/_sources/contents/pgdb/adaptation.txt
+docs/_build/html/_sources/contents/pgdb/connection.txt
+docs/_build/html/_sources/contents/pgdb/cursor.txt
+docs/_build/html/_sources/contents/pgdb/index.txt
+docs/_build/html/_sources/contents/pgdb/introduction.txt
+docs/_build/html/_sources/contents/pgdb/module.txt
+docs/_build/html/_sources/contents/pgdb/typecache.txt
+docs/_build/html/_sources/contents/pgdb/types.txt
+docs/_build/html/_sources/contents/postgres/advanced.txt
+docs/_build/html/_sources/contents/postgres/basic.txt
+docs/_build/html/_sources/contents/postgres/func.txt
+docs/_build/html/_sources/contents/postgres/index.txt
+docs/_build/html/_sources/contents/postgres/syscat.txt
+docs/_build/html/_sources/download/index.txt
+docs/_build/html/_static/ajax-loader.gif
+docs/_build/html/_static/basic.css
+docs/_build/html/_static/cloud.css
+docs/_build/html/_static/cloud.js
+docs/_build/html/_static/comment-bright.png
+docs/_build/html/_static/comment-close.png
+docs/_build/html/_static/comment.png
+docs/_build/html/_static/doctools.js
+docs/_build/html/_static/down-pressed.png
+docs/_build/html/_static/down.png
+docs/_build/html/_static/favicon.ico
+docs/_build/html/_static/file.png
+docs/_build/html/_static/icon-caution.png
+docs/_build/html/_static/icon-danger.png
+docs/_build/html/_static/icon-deprecated.png
+docs/_build/html/_static/icon-note.png
+docs/_build/html/_static/icon-seealso.png
+docs/_build/html/_static/icon-todo.png
+docs/_build/html/_static/icon-warning.png
+docs/_build/html/_static/jquery-1.11.1.js
+docs/_build/html/_static/jquery.cookie.js
+docs/_build/html/_static/jquery.js
+docs/_build/html/_static/minus.png
+docs/_build/html/_static/plus.png
+docs/_build/html/_static/pygments.css
+docs/_build/html/_static/pygresql.css
+docs/_build/html/_static/pygresql.png
+docs/_build/html/_static/searchtools.js
+docs/_build/html/_static/underscore-1.3.1.js
+docs/_build/html/_static/underscore.js
+docs/_build/html/_static/up-pressed.png
+docs/_build/html/_static/up.png
+docs/_build/html/_static/websupport.js
+docs/_build/html/community/index.html
+docs/_build/html/contents/changelog.html
+docs/_build/html/contents/examples.html
+docs/_build/html/contents/general.html
+docs/_build/html/contents/index.html
+docs/_build/html/contents/install.html
+docs/_build/html/contents/tutorial.html
+docs/_build/html/contents/pg/adaptation.html
+docs/_build/html/contents/pg/connection.html
+docs/_build/html/contents/pg/db_types.html
+docs/_build/html/contents/pg/db_wrapper.html
+docs/_build/html/contents/pg/index.html
+docs/_build/html/contents/pg/introduction.html
+docs/_build/html/contents/pg/large_objects.html
+docs/_build/html/contents/pg/module.html
+docs/_build/html/contents/pg/notification.html
+docs/_build/html/contents/pg/query.html
+docs/_build/html/contents/pgdb/adaptation.html
+docs/_build/html/contents/pgdb/connection.html
+docs/_build/html/contents/pgdb/cursor.html
+docs/_build/html/contents/pgdb/index.html
+docs/_build/html/contents/pgdb/introduction.html
+docs/_build/html/contents/pgdb/module.html
+docs/_build/html/contents/pgdb/typecache.html
+docs/_build/html/contents/pgdb/types.html
+docs/_build/html/contents/postgres/advanced.html
+docs/_build/html/contents/postgres/basic.html
+docs/_build/html/contents/postgres/func.html
+docs/_build/html/contents/postgres/index.html
+docs/_build/html/contents/postgres/syscat.html
+docs/_build/html/download/index.html
+docs/_static/favicon.ico
+docs/_static/pygresql.css_t
+docs/_static/pygresql.png
+docs/_templates/layout.html
+docs/community/bugtracker.rst
+docs/community/homes.rst
+docs/community/index.rst
+docs/community/mailinglist.rst
+docs/community/source.rst
+docs/community/support.rst
+docs/contents/changelog.rst
+docs/contents/examples.rst
+docs/contents/general.rst
+docs/contents/index.rst
+docs/contents/install.rst
+docs/contents/tutorial.rst
+docs/contents/pg/adaptation.rst
+docs/contents/pg/connection.rst
+docs/contents/pg/db_types.rst
+docs/contents/pg/db_wrapper.rst
+docs/contents/pg/index.rst
+docs/contents/pg/introduction.rst
+docs/contents/pg/large_objects.rst
+docs/contents/pg/module.rst
+docs/contents/pg/notification.rst
+docs/contents/pg/query.rst
+docs/contents/pgdb/adaptation.rst
+docs/contents/pgdb/connection.rst
+docs/contents/pgdb/cursor.rst
+docs/contents/pgdb/index.rst
+docs/contents/pgdb/introduction.rst
+docs/contents/pgdb/module.rst
+docs/contents/pgdb/typecache.rst
+docs/contents/pgdb/types.rst
+docs/contents/postgres/advanced.rst
+docs/contents/postgres/basic.rst
+docs/contents/postgres/func.rst
+docs/contents/postgres/index.rst
+docs/contents/postgres/syscat.rst
+docs/download/download.rst
+docs/download/files.rst
+docs/download/index.rst
+tests/__init__.py
+tests/dbapi20.py
+tests/test_classic.py
+tests/test_classic_connection.py
+tests/test_classic_dbwrapper.py
+tests/test_classic_functions.py
+tests/test_classic_largeobj.py
+tests/test_classic_notification.py
+tests/test_dbapi20.py
+tests/test_dbapi20_copy.py
+tests/test_tutorial.py
@@ -0,0 +1 @@
+
@@ -0,0 +1,3 @@
+_pg
+pg
+pgdb
View
@@ -0,0 +1,27 @@
+PyGreSQL - Python interface for PostgreSQL
+==========================================
+
+PyGreSQL is a Python module that interfaces to a PostgreSQL database.
+It embeds the PostgreSQL query library to allow easy use of the powerful
+PostgreSQL features from a Python script.
+
+PyGreSQL is developed and tested on a NetBSD system, but it should also
+run on most other platforms where PostgreSQL and Python is running.
+It is based on the PyGres95 code written by Pascal Andre.
+D'Arcy (darcy@druid.net) renamed it to PyGreSQL starting with version 2.0
+and serves as the "BDFL" of PyGreSQL.
+
+Installation
+------------
+
+The simplest way to install PyGreSQL is to type::
+
+ $ pip install PyGreSQL
+
+For other ways of installing PyGreSQL and requirements,
+see the documentation.
+
+Documentation
+-------------
+
+The documentation is available at http://www.pygresql.org/.
Oops, something went wrong.

0 comments on commit 8409805

Please sign in to comment.