Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pygresql/pygresql
The official PyGreSQL repository
https://github.com/pygresql/pygresql
c-extension database database-adapter libpq postgresql python
Last synced: 6 days ago
JSON representation
The official PyGreSQL repository
- Host: GitHub
- URL: https://github.com/pygresql/pygresql
- Owner: PyGreSQL
- License: other
- Created: 2016-02-06T17:08:44.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2024-12-05T17:00:54.000Z (about 1 month ago)
- Last Synced: 2025-01-02T09:12:27.285Z (6 days ago)
- Topics: c-extension, database, database-adapter, libpq, postgresql, python
- Language: Python
- Homepage: http://pygresql.org/
- Size: 2.68 MB
- Stars: 40
- Watchers: 3
- Forks: 18
- Open Issues: 24
-
Metadata Files:
- Readme: README.rst
- License: LICENSE.txt
Awesome Lists containing this project
README
PyGreSQL - Python interface for PostgreSQL
==========================================PyGreSQL is a Python module that interfaces to a PostgreSQL database.
It wraps the lower level C API library libpq to allow easy use of the
powerful PostgreSQL features from Python.PyGreSQL should run on most platforms where PostgreSQL and Python is running.
It is based on the PyGres95 code written by Pascal Andre.
D'Arcy J. M. Cain renamed it to PyGreSQL starting with version 2.0
and serves as the "BDFL" of PyGreSQL.
Christoph Zwerschke volunteered as another maintainer and has been the main
contributor since version 3.7 of PyGreSQL.The following Python versions are supported:
* PyGreSQL 4.x and earlier: Python 2 only
* PyGreSQL 5.x: Python 2 and Python 3
* PyGreSQL 6.x and newer: Python 3 onlyThe current version of PyGreSQL supports Python versions 3.7 to 3.13
and PostgreSQL versions 10 to 17 on the server.Installation
------------The simplest way to install PyGreSQL is to type::
$ pip install PyGreSQL
For other ways of installing PyGreSQL and requirements,
see the documentation.Note that PyGreSQL also requires the libpq shared library to be
installed and accessible on the client machine.Documentation
-------------The documentation is available at
`pygresql.github.io/ `_ and at
`pygresql.readthedocs.io `_,
where you can also find the documentation for older versions.