├── LICENSE ├── Procfile ├── PyGreSQL-5.0 ├── LICENSE.txt ├── MANIFEST.in ├── PKG-INFO ├── PyGreSQL.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── not-zip-safe │ └── top_level.txt ├── README.rst ├── build │ └── lib.macosx-10.11-intel-2.7 │ │ ├── pg.py │ │ └── pgdb.py ├── docs │ ├── Makefile │ ├── _build │ │ └── html │ │ │ ├── _sources │ │ │ ├── announce.txt │ │ │ ├── community │ │ │ │ └── index.txt │ │ │ ├── contents │ │ │ │ ├── changelog.txt │ │ │ │ ├── examples.txt │ │ │ │ ├── general.txt │ │ │ │ ├── index.txt │ │ │ │ ├── install.txt │ │ │ │ ├── pg │ │ │ │ │ ├── adaptation.txt │ │ │ │ │ ├── connection.txt │ │ │ │ │ ├── db_types.txt │ │ │ │ │ ├── db_wrapper.txt │ │ │ │ │ ├── index.txt │ │ │ │ │ ├── introduction.txt │ │ │ │ │ ├── large_objects.txt │ │ │ │ │ ├── module.txt │ │ │ │ │ ├── notification.txt │ │ │ │ │ └── query.txt │ │ │ │ ├── pgdb │ │ │ │ │ ├── adaptation.txt │ │ │ │ │ ├── connection.txt │ │ │ │ │ ├── cursor.txt │ │ │ │ │ ├── index.txt │ │ │ │ │ ├── introduction.txt │ │ │ │ │ ├── module.txt │ │ │ │ │ ├── typecache.txt │ │ │ │ │ └── types.txt │ │ │ │ ├── postgres │ │ │ │ │ ├── advanced.txt │ │ │ │ │ ├── basic.txt │ │ │ │ │ ├── func.txt │ │ │ │ │ ├── index.txt │ │ │ │ │ └── syscat.txt │ │ │ │ └── tutorial.txt │ │ │ ├── copyright.txt │ │ │ ├── download │ │ │ │ └── index.txt │ │ │ └── index.txt │ │ │ ├── _static │ │ │ ├── ajax-loader.gif │ │ │ ├── basic.css │ │ │ ├── cloud.css │ │ │ ├── cloud.js │ │ │ ├── comment-bright.png │ │ │ ├── comment-close.png │ │ │ ├── comment.png │ │ │ ├── doctools.js │ │ │ ├── down-pressed.png │ │ │ ├── down.png │ │ │ ├── favicon.ico │ │ │ ├── file.png │ │ │ ├── icon-caution.png │ │ │ ├── icon-danger.png │ │ │ ├── icon-deprecated.png │ │ │ ├── icon-note.png │ │ │ ├── icon-seealso.png │ │ │ ├── icon-todo.png │ │ │ ├── icon-warning.png │ │ │ ├── jquery-1.11.1.js │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.js │ │ │ ├── minus.png │ │ │ ├── plus.png │ │ │ ├── pygments.css │ │ │ ├── pygresql.css │ │ │ ├── pygresql.png │ │ │ ├── searchtools.js │ │ │ ├── underscore-1.3.1.js │ │ │ ├── underscore.js │ │ │ ├── up-pressed.png │ │ │ ├── up.png │ │ │ └── websupport.js │ │ │ ├── announce.html │ │ │ ├── community │ │ │ └── index.html │ │ │ ├── contents │ │ │ ├── changelog.html │ │ │ ├── examples.html │ │ │ ├── general.html │ │ │ ├── index.html │ │ │ ├── install.html │ │ │ ├── pg │ │ │ │ ├── adaptation.html │ │ │ │ ├── connection.html │ │ │ │ ├── db_types.html │ │ │ │ ├── db_wrapper.html │ │ │ │ ├── index.html │ │ │ │ ├── introduction.html │ │ │ │ ├── large_objects.html │ │ │ │ ├── module.html │ │ │ │ ├── notification.html │ │ │ │ └── query.html │ │ │ ├── pgdb │ │ │ │ ├── adaptation.html │ │ │ │ ├── connection.html │ │ │ │ ├── cursor.html │ │ │ │ ├── index.html │ │ │ │ ├── introduction.html │ │ │ │ ├── module.html │ │ │ │ ├── typecache.html │ │ │ │ └── types.html │ │ │ ├── postgres │ │ │ │ ├── advanced.html │ │ │ │ ├── basic.html │ │ │ │ ├── func.html │ │ │ │ ├── index.html │ │ │ │ └── syscat.html │ │ │ └── tutorial.html │ │ │ ├── copyright.html │ │ │ ├── download │ │ │ └── index.html │ │ │ ├── genindex.html │ │ │ ├── index.html │ │ │ ├── py-modindex.html │ │ │ ├── search.html │ │ │ └── searchindex.js │ ├── _static │ │ ├── favicon.ico │ │ ├── pygresql.css_t │ │ └── pygresql.png │ ├── _templates │ │ └── layout.html │ ├── about.rst │ ├── announce.rst │ ├── community │ │ ├── bugtracker.rst │ │ ├── homes.rst │ │ ├── index.rst │ │ ├── mailinglist.rst │ │ ├── source.rst │ │ └── support.rst │ ├── conf.py │ ├── contents │ │ ├── changelog.rst │ │ ├── examples.rst │ │ ├── general.rst │ │ ├── index.rst │ │ ├── install.rst │ │ ├── pg │ │ │ ├── adaptation.rst │ │ │ ├── connection.rst │ │ │ ├── db_types.rst │ │ │ ├── db_wrapper.rst │ │ │ ├── index.rst │ │ │ ├── introduction.rst │ │ │ ├── large_objects.rst │ │ │ ├── module.rst │ │ │ ├── notification.rst │ │ │ └── query.rst │ │ ├── pgdb │ │ │ ├── adaptation.rst │ │ │ ├── connection.rst │ │ │ ├── cursor.rst │ │ │ ├── index.rst │ │ │ ├── introduction.rst │ │ │ ├── module.rst │ │ │ ├── typecache.rst │ │ │ └── types.rst │ │ ├── postgres │ │ │ ├── advanced.rst │ │ │ ├── basic.rst │ │ │ ├── func.rst │ │ │ ├── index.rst │ │ │ └── syscat.rst │ │ └── tutorial.rst │ ├── copyright.rst │ ├── download │ │ ├── download.rst │ │ ├── files.rst │ │ └── index.rst │ ├── index.rst │ └── make.bat ├── pg.py ├── pgdb.py ├── pgmodule.c ├── pgtypes.h ├── py3c.h ├── setup.cfg ├── setup.py └── tests │ ├── __init__.py │ ├── dbapi20.py │ ├── test_classic.py │ ├── test_classic_connection.py │ ├── test_classic_dbwrapper.py │ ├── test_classic_functions.py │ ├── test_classic_largeobj.py │ ├── test_classic_notification.py │ ├── test_dbapi20.py │ ├── test_dbapi20_copy.py │ └── test_tutorial.py ├── README.md ├── SlackBot.jpg ├── connection.py ├── requirements.txt └── select_update.gif /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python connection.py 2 | -------------------------------------------------------------------------------- /PyGreSQL-5.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/LICENSE.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/MANIFEST.in -------------------------------------------------------------------------------- /PyGreSQL-5.0/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/PKG-INFO -------------------------------------------------------------------------------- /PyGreSQL-5.0/PyGreSQL.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/PyGreSQL.egg-info/PKG-INFO -------------------------------------------------------------------------------- /PyGreSQL-5.0/PyGreSQL.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/PyGreSQL.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/PyGreSQL.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /PyGreSQL-5.0/PyGreSQL.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /PyGreSQL-5.0/PyGreSQL.egg-info/top_level.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/PyGreSQL.egg-info/top_level.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/README.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/build/lib.macosx-10.11-intel-2.7/pg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/build/lib.macosx-10.11-intel-2.7/pg.py -------------------------------------------------------------------------------- /PyGreSQL-5.0/build/lib.macosx-10.11-intel-2.7/pgdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/build/lib.macosx-10.11-intel-2.7/pgdb.py -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/Makefile -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/announce.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/announce.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/community/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/community/index.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/changelog.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/examples.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/general.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/general.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/index.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/install.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/adaptation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/adaptation.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/connection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/connection.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/db_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/db_types.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/db_wrapper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/db_wrapper.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/index.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/introduction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/introduction.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/large_objects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/large_objects.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/module.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/module.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/notification.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/notification.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/query.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/pg/query.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/adaptation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/adaptation.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/connection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/connection.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/cursor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/cursor.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/index.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/introduction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/introduction.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/module.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/module.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/typecache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/typecache.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/pgdb/types.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/postgres/advanced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/postgres/advanced.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/postgres/basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/postgres/basic.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/postgres/func.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/postgres/func.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/postgres/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/postgres/index.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/postgres/syscat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/postgres/syscat.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/contents/tutorial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/contents/tutorial.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/copyright.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/download/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/download/index.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_sources/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_sources/index.txt -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/basic.css -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/cloud.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/cloud.css -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/cloud.js -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/comment-bright.png -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/comment-close.png -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/comment.png -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/doctools.js -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/down-pressed.png -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/down.png -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/favicon.ico -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/file.png -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/icon-caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/icon-caution.png -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/icon-danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/icon-danger.png -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/icon-deprecated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/icon-deprecated.png -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/icon-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/icon-note.png -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/icon-seealso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/icon-seealso.png -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/icon-todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/icon-todo.png -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/icon-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/icon-warning.png -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/jquery-1.11.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/jquery-1.11.1.js -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/jquery.cookie.js -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/jquery.js -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/minus.png -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/plus.png -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/pygments.css -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/pygresql.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/pygresql.css -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/pygresql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/pygresql.png -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/searchtools.js -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/underscore.js -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/up-pressed.png -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/up.png -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/_static/websupport.js -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/announce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/announce.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/community/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/community/index.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/changelog.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/examples.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/general.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/index.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/install.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/pg/adaptation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/pg/adaptation.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/pg/connection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/pg/connection.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/pg/db_types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/pg/db_types.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/pg/db_wrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/pg/db_wrapper.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/pg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/pg/index.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/pg/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/pg/introduction.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/pg/large_objects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/pg/large_objects.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/pg/module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/pg/module.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/pg/notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/pg/notification.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/pg/query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/pg/query.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/pgdb/adaptation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/pgdb/adaptation.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/pgdb/connection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/pgdb/connection.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/pgdb/cursor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/pgdb/cursor.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/pgdb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/pgdb/index.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/pgdb/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/pgdb/introduction.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/pgdb/module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/pgdb/module.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/pgdb/typecache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/pgdb/typecache.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/pgdb/types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/pgdb/types.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/postgres/advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/postgres/advanced.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/postgres/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/postgres/basic.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/postgres/func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/postgres/func.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/postgres/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/postgres/index.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/postgres/syscat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/postgres/syscat.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/contents/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/contents/tutorial.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/copyright.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/copyright.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/download/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/download/index.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/genindex.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/index.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/py-modindex.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/search.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_build/html/searchindex.js -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_static/favicon.ico -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_static/pygresql.css_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_static/pygresql.css_t -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_static/pygresql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_static/pygresql.png -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/_templates/layout.html -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/about.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/announce.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/announce.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/community/bugtracker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/community/bugtracker.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/community/homes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/community/homes.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/community/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/community/index.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/community/mailinglist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/community/mailinglist.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/community/source.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/community/source.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/community/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/community/support.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/conf.py -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/changelog.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/examples.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/general.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/general.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/index.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/install.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/pg/adaptation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/pg/adaptation.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/pg/connection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/pg/connection.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/pg/db_types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/pg/db_types.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/pg/db_wrapper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/pg/db_wrapper.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/pg/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/pg/index.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/pg/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/pg/introduction.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/pg/large_objects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/pg/large_objects.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/pg/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/pg/module.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/pg/notification.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/pg/notification.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/pg/query.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/pg/query.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/pgdb/adaptation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/pgdb/adaptation.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/pgdb/connection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/pgdb/connection.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/pgdb/cursor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/pgdb/cursor.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/pgdb/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/pgdb/index.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/pgdb/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/pgdb/introduction.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/pgdb/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/pgdb/module.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/pgdb/typecache.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/pgdb/typecache.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/pgdb/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/pgdb/types.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/postgres/advanced.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/postgres/advanced.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/postgres/basic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/postgres/basic.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/postgres/func.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/postgres/func.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/postgres/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/postgres/index.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/postgres/syscat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/postgres/syscat.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/contents/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/contents/tutorial.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/copyright.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/copyright.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/download/download.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/download/download.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/download/files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/download/files.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/download/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/download/index.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/index.rst -------------------------------------------------------------------------------- /PyGreSQL-5.0/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/docs/make.bat -------------------------------------------------------------------------------- /PyGreSQL-5.0/pg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/pg.py -------------------------------------------------------------------------------- /PyGreSQL-5.0/pgdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/pgdb.py -------------------------------------------------------------------------------- /PyGreSQL-5.0/pgmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/pgmodule.c -------------------------------------------------------------------------------- /PyGreSQL-5.0/pgtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/pgtypes.h -------------------------------------------------------------------------------- /PyGreSQL-5.0/py3c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/py3c.h -------------------------------------------------------------------------------- /PyGreSQL-5.0/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/setup.cfg -------------------------------------------------------------------------------- /PyGreSQL-5.0/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/setup.py -------------------------------------------------------------------------------- /PyGreSQL-5.0/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/tests/__init__.py -------------------------------------------------------------------------------- /PyGreSQL-5.0/tests/dbapi20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/tests/dbapi20.py -------------------------------------------------------------------------------- /PyGreSQL-5.0/tests/test_classic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/tests/test_classic.py -------------------------------------------------------------------------------- /PyGreSQL-5.0/tests/test_classic_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/tests/test_classic_connection.py -------------------------------------------------------------------------------- /PyGreSQL-5.0/tests/test_classic_dbwrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/tests/test_classic_dbwrapper.py -------------------------------------------------------------------------------- /PyGreSQL-5.0/tests/test_classic_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/tests/test_classic_functions.py -------------------------------------------------------------------------------- /PyGreSQL-5.0/tests/test_classic_largeobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/tests/test_classic_largeobj.py -------------------------------------------------------------------------------- /PyGreSQL-5.0/tests/test_classic_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/tests/test_classic_notification.py -------------------------------------------------------------------------------- /PyGreSQL-5.0/tests/test_dbapi20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/tests/test_dbapi20.py -------------------------------------------------------------------------------- /PyGreSQL-5.0/tests/test_dbapi20_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/tests/test_dbapi20_copy.py -------------------------------------------------------------------------------- /PyGreSQL-5.0/tests/test_tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/PyGreSQL-5.0/tests/test_tutorial.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/README.md -------------------------------------------------------------------------------- /SlackBot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/SlackBot.jpg -------------------------------------------------------------------------------- /connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/connection.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PyGreSQL==5.0 2 | flask==0.10.1 3 | -------------------------------------------------------------------------------- /select_update.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/slack-sql/HEAD/select_update.gif --------------------------------------------------------------------------------