CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Thu, 04 Sep 2025 01:05:37 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20091201101045
location: https://web.archive.org/web/20091201101045/https://github.com/jwp/py-postgresql/tree/v0.9.1
server-timing: captures_list;dur=1.864566, exclusion.robots;dur=0.035184, exclusion.robots.policy;dur=0.021491, esindex;dur=0.014661, cdx.remote;dur=25.664070, LoadShardBlock;dur=207.304051, PetaboxLoader3.datanode;dur=90.597081, PetaboxLoader3.resolve;dur=23.399734
x-app-server: wwwb-app201
x-ts: 302
x-tr: 277
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: wb-p-SERVER=wwwb-app201; 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, 04 Sep 2025 01:05:38 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Tue, 01 Dec 2009 10:10:44 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "9dda34cb117c561d27f372d7ddf28ba9"
x-archive-orig-x-runtime: 137ms
x-archive-orig-content-length: 26081
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, 01 Dec 2009 10:10:45 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sun, 23 Aug 2009 19:55:17 GMT", ; rel="prev memento"; datetime="Sun, 23 Aug 2009 19:55:17 GMT", ; rel="memento"; datetime="Tue, 01 Dec 2009 10:10:45 GMT", ; rel="last memento"; datetime="Tue, 01 Dec 2009 10:10:45 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: 52_13_20091201095720_crawl103-c/52_13_20091201100948_crawl101.arc.gz
server-timing: captures_list;dur=0.602484, exclusion.robots;dur=0.025905, exclusion.robots.policy;dur=0.014077, esindex;dur=0.011576, cdx.remote;dur=15.495797, LoadShardBlock;dur=133.261311, PetaboxLoader3.datanode;dur=214.976932, PetaboxLoader3.resolve;dur=133.427896, load_resource;dur=243.436808
x-app-server: wwwb-app201
x-ts: 200
x-tr: 484
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 v0.9.1 - 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 | Loading commit data... ![]() |
|
![]() |
LICENSE | Thu Jan 15 08:15:19 -0800 2009 | Add README data, AUTHORS, and LICENSE file. s/... [jwp] |
![]() |
MANIFEST.in | Sat Jun 13 20:50:25 -0700 2009 | yay python [jwp] |
![]() |
README | Wed Jun 03 20:09:21 -0700 2009 | Reference as 'python3'. [jwp] |
![]() |
postgresql/ | ||
![]() |
setup.py | Mon Mar 16 01:35:15 -0700 2009 | Don't build extensions if PY_BUILD_EXTENSIONS=0. [jwp] |
![]() |
sphinx-src/ | Thu Jun 11 17:28:05 -0700 2009 | Note that DB-API extends PG-API. [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!