CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Thu, 28 Aug 2025 22:54:15 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20091215034304
location: https://web.archive.org/web/20091215034304/https://github.com/jwp/py-postgresql
server-timing: captures_list;dur=0.828857, exclusion.robots;dur=0.028117, exclusion.robots.policy;dur=0.013601, esindex;dur=0.014195, cdx.remote;dur=644.255558, LoadShardBlock;dur=289.251581, PetaboxLoader3.datanode;dur=130.987478, PetaboxLoader3.resolve;dur=109.775633
x-app-server: wwwb-app219
x-ts: 302
x-tr: 975
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app219; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Thu, 28 Aug 2025 22:54:16 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Tue, 15 Dec 2009 03:43:03 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "3f129cc0d37dd77e3db2ca91dc818e26"
x-archive-orig-x-runtime: 134ms
x-archive-orig-content-length: 26572
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Tue, 15 Dec 2009 03:43:04 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Fri, 13 Nov 2009 18:00:49 GMT", ; rel="prev memento"; datetime="Fri, 13 Nov 2009 18:00:49 GMT", ; rel="memento"; datetime="Tue, 15 Dec 2009 03:43:04 GMT", ; rel="next memento"; datetime="Thu, 07 Feb 2019 10:06:07 GMT", ; rel="last memento"; datetime="Thu, 07 Feb 2019 10:06:08 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_13_20091214232349_crawl100-c/51_13_20091215034132_crawl101.arc.gz
server-timing: captures_list;dur=0.644978, exclusion.robots;dur=0.026042, exclusion.robots.policy;dur=0.011703, esindex;dur=0.012735, cdx.remote;dur=11.997979, LoadShardBlock;dur=263.275864, PetaboxLoader3.datanode;dur=378.156750, load_resource;dur=208.123934, PetaboxLoader3.resolve;dur=74.538220
x-app-server: wwwb-app219
x-ts: 200
x-tr: 570
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
jwp's py-postgresql at master - GitHub
This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (

This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (

Description: | PostgreSQL interfaces library. Driver, protocol tools, and command interfaces for Python 3 edit |
Homepage: | https://python.projects.postgresql.org edit |
Public Clone URL: |
git://github.com/jwp/py-postgresql.git
Give this clone URL to anyone.
git clone git://github.com/jwp/py-postgresql.git
|
Your Clone URL: |
Use this clone URL yourself.
git clone git@github.com:jwp/py-postgresql.git
|
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Sat May 16 14:10:42 -0700 2009 | Implement Categories and Query Libraries. post... [jwp] |
![]() |
AUTHORS | Sun Nov 01 15:35:21 -0800 2009 | Note AppCove Network's donation. [jwp] |
![]() |
LICENSE | Thu Jan 15 08:15:19 -0800 2009 | Add README data, AUTHORS, and LICENSE file. s/... [jwp] |
![]() |
MANIFEST.in | Fri Dec 11 19:42:45 -0800 2009 | Use *.rst now. [jwp] |
![]() |
README | Wed Jun 03 20:09:21 -0700 2009 | Reference as 'python3'. [jwp] |
![]() |
postgresql/ | Mon Dec 14 17:40:45 -0800 2009 | Refactor encoding alias handling. Add some map... [jwp] |
![]() |
setup.py | Mon Mar 16 01:35:15 -0700 2009 | Don't build extensions if PY_BUILD_EXTENSIONS=0. [jwp] |
![]() |
sphinx-src/ | Fri Dec 11 23:16:33 -0800 2009 | Add warnings and notes about the pending deprec... [jwp] |
README
About py-postgresql =================== py-postgresql is a Python 3 package providing modules to work with PostgreSQL. This includes a high-level driver, and many other tools that support a developer working with PostgreSQL databases. The goal of this project is to provide substantial convenience to Python developers working with PostgreSQL. Installation ------------ Installation *should* be as simple as:: $ python3 ./setup.py install More information about installation is available via:: python -m postgresql.documentation.admin Basic Driver Usage ------------------ Using PG-API is recommended as it provides more utility for the user:: >>> import postgresql >>> db = postgresql.open('pq://user:password@host:port/database') >>> get_table = db.prepare("select * from information_schema.tables where table_name = $1") >>> for x in get_table("tables"): >>> print(x) >>> print(get_table.first("tables")) However, a DB-API 2.0 driver is provided: `postgresql.driver.dbapi20`. Further Information ------------------- The documentation package, `postgresql.documentation.index`, contains more detailed information on the modules herein, and HTML versions of the documentation can be found at: https://python.projects.postgresql.org Or, you can read them in your pager: python -m postgresql.documentation.index
This feature is coming soon. Sit tight!