PostgreSQL client library wrapper providing environment variable based configuration
Find a file
2014-09-02 16:53:15 -04:00
docs Initial commit 2014-08-29 11:07:04 -04:00
sprockets Initial commit 2014-08-29 11:07:04 -04:00
.gitignore Initial commit 2014-08-28 18:44:35 -04:00
.travis.yml Should be using test requirements 2014-08-29 11:11:51 -04:00
dev-requirements.txt Initial commit 2014-08-29 11:07:04 -04:00
LICENSE Initial commit 2014-08-29 11:07:04 -04:00
MANIFEST.in Initial commit 2014-08-29 11:07:04 -04:00
README.rst Fix the rst syntax so it renders correctly on pypi 2014-09-02 16:53:15 -04:00
requirements.txt Initial commit 2014-08-29 11:07:04 -04:00
setup.cfg Initial commit 2014-08-29 11:07:04 -04:00
setup.py .md -> .rst 2014-09-02 15:23:17 -04:00
test-requirements.txt Initial commit 2014-08-29 11:07:04 -04:00
tests.py Initial commit 2014-08-29 11:07:04 -04:00

sprockets.clients.postgresql
============================
The ``sprockets.clients.postgresql`` package wraps the
`queries <http://queries.readthedocs.org>`_ package providing environment
variable based configuration for connecting to PostgreSQL.

|Version| |Downloads| |Status| |Coverage| |License|

Installation
------------
sprockets.clients.postgresql is available on the
`Python Package Index <https://pypi.python.org/pypi/sprockets.clients.postgresql>`_
and can be installed via ``pip`` or ``easy_install``:

.. code:: bash

    pip install sprockets.clients.postgresql

Documentation
-------------
https://sprocketsclientspostgresql.readthedocs.org

Requirements
------------
-  `queries`_
-  `sprockets <https://github.com/sprockets/sprockets>`_

Example
-------
The following example sets the environment variables for connecting to
PostgreSQL on localhost to the ``postgres`` database and issues a query.

.. code:: python

    import os

    from sprockets.clients import postgresql

    os.environ['POSTGRES_HOST'] = 'localhost'
    os.environ['POSTGRES_USER'] = 'postgres'
    os.environ['POSTGRES_PORT'] = 5432
    os.environ['POSTGRES_DBNAME'] = 'postgres'

    session = postgresql.Session('postgres')
    result = session.query('SELECT 1')
    print(repr(result))

Version History
---------------
Available at https://sprocketsclientspostgresql.readthedocs.org/en/latest/history.html

.. |Version| image:: https://badge.fury.io/py/sprockets.clients.postgresql.svg?
   :target: http://badge.fury.io/py/sprockets.clients.postgresql

.. |Status| image:: https://travis-ci.org/sprockets/sprockets.clients.postgresql.svg?branch=master
   :target: https://travis-ci.org/sprockets/sprockets.clients.postgresql

.. |Coverage| image:: https://img.shields.io/coveralls/sprockets/sprockets.clients.postgresql.svg?
   :target: https://coveralls.io/r/sprockets/sprockets.clients.postgresql

.. |Downloads| image:: https://pypip.in/d/sprockets.clients.postgresql/badge.svg?
   :target: https://pypi.python.org/pypi/sprockets.clients.postgresql

.. |License| image:: https://pypip.in/license/sprockets.clients.postgresql/badge.svg?
   :target: https://sprocketsclientspostgresql.readthedocs.org