Skip to main content

Psycopg2 support for the Spans library

Project description

PsycoSpans

Psycospans brings support for Spans to Psycopg2.

PsycopSpans work by wrapping psycopg2’s connect() function and set the connection up for handling Spans’ range types.

from psycospans import connect

conn = connect("dbname=test")
cur = conn.cursor()

test_range = intrange(1, 10)
cur.execute("SELECT int4range(5, NULL), %s", (test_range,))

other_range, test_range_cmp = cur.fetchone()

test_range == test_range_cmp # True
other_range == intrange(5) # True

Requirements

Psycospans will only work with PostgreSQL 9.2 or later.

Installation

Psycospans exists on PyPI. Note that you must install psycopg2 manually. This is because you may use either psycopg2 or psycopg2-binary.

pip install psycospans psycopg2-binary

Documentation

For full doumentation please run pydoc psycospans from a shell.

Changelog

Version 1.0.0

Released on 9th October 2018

  • Added wheel

  • Moved unit tests out of package

  • Removed explicit dependency on psycopg2 since one may want to use psycopg2-binary

  • Removed Python 3.3 support. Requires 2.7 or 3.4 or greater

  • Removed Tox usage for development

  • Use pytest to run test suite

Version 0.1.1

Released on 23rd August 2018

  • Fixed compatibility issue with Psycopg >= 2.5

  • Improved Python 3 compatibility

Version 0.1.0

Released on 12th June 2014

  • Initial release

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

PsycoSpans-1.0.0.tar.gz (6.7 kB view hashes)

Uploaded Source

Built Distribution

PsycoSpans-1.0.0-py2.py3-none-any.whl (5.7 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page