Skip to main content
https://travis-ci.org/wichert/pyramid_sqlalchemy.svg?branch=master

pyramid_sqlalchemy provides some basic glue to facilitate using SQLAlchemy with Pyramid.

SQLAlchemy relies on global state for a few things:

  • A MetaData instance which tracks all known SQL tables.

  • A base class for all models using the ORM.

  • A session factory.

Every application using SQLAlchemy must provides its own instance of these. This makes it hard create add-on packages that also use SQLAlchemy, since they either need to have their own SQLAlchemy state, which makes it hard to integrate them into your application, or they need to jump through multiple complex hoops to allow them share state with your application.

pyramid_sqlalchemy helps by providing a canonical location for the global SQLAlchemy state. In addition it provides a convenient way to configure SQLAlchemy in a Pyramid application.

from pyramid.config import Configurator
from pyramid_sqlalchemy import BaseObject

class MyModel(BaseObject):
    __tablename__ = 'my_model'
    ...

def main():
    config = Configurator()
    # Configure SQLAlchemy using settings from the .ini file
    config.include('pyramid_sqlalchemy')
    ...
    return config.make_wsgi_app()

Changelog

1.4 - November 25, 2015

  • Revert naming convention change. This change broke all existing data models which did not supply a constraint name everywhere. This is especially bad for types which implicitly create unnamed constraints, such as booleans and enums on dialects that do not have native support.

1.3 - November 23, 2015

  • Configure a default naming convention, as recommended by alembic). Pull request 3 from Marcin Lulek.

  • Fix a broken import in pyramid_sqlalchemy’s own test when running on Python 3.

  • Allow overriding the database used for testing with the pytest --sql-url option when using the DatabaseTestCase test class. For non-pytest users support the DB_URI environment variable as well.

1.2.2 - September 11, 2014

  • Add dependency on mock for Python <3.3. This fixes import problems who try to import pyramid_sqlalchemy.testing in production code.

1.2.1 - September 1, 2014

  • Move pyramid to a test-only dependency. This makes it simpler to use pyramid_sqlalchemy in non-pyramid contexts.

1.2 - August 30, 2014

  • Use unittest.mock when available. This removes the mock dependency on Python 3.

  • Tests no longer need to mock out pyramid_sqlalchemy.includeme; this is now handled by DatabaseTestCase and the py.test fixtures.

  • Automatically make py.test fixtures available externally. This removes the need to copy & paste them over from the documentation.

  • Fix error on pytest fixture example.

  • Setup Travis to automatically run tests on CPython 2.6, CPython 2.7, CPython 3.3, CPython 3.4 and PyPy.

1.1 - July 14, 2014

  • Add missing schema to the Pyramid-URL in the package description. This broke ReST rendering on the PyPI page.

  • Add a new enable_sql_two_phase_commit() configuration directive to enable two-phase commit.

  • Enable foreign key constraint checking for SQLite in DatabaseTestCase.

  • Use SQLAlchemy events instead of ZopeTransactionExtension to handle integration of zope.sqlalchemy and SQLAlchemy.

1.0 - July 13, 2014

  • First release.

Download files

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

Source Distribution

pyramid_sqlalchemy-1.4.tar.gz (17.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyramid_sqlalchemy-1.4-py2.py3-none-any.whl (11.8 kB view details)

Uploaded Python 2Python 3

File details

Details for the file pyramid_sqlalchemy-1.4.tar.gz.

File metadata

File hashes

Hashes for pyramid_sqlalchemy-1.4.tar.gz
Algorithm Hash digest
SHA256 9eeb29e409aedd08d95623d2080ac79e2d824c8b4274e397a0d9710d62ebbf8f
MD5 a44a5c672ee304a6cf382f820c2a242b
BLAKE2b-256 f9d89a29c4d3bb2cc8221c4664486e24abebcf7331556aaf6cc8646b5ea31ac7

See more details on using hashes here.

File details

Details for the file pyramid_sqlalchemy-1.4-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for pyramid_sqlalchemy-1.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 216b932ca404c3933e1d0898a1e833240b8dcb0514fc09da4ad99bff723b356d
MD5 8cf3ca10a5633549fb79fc01386e67c0
BLAKE2b-256 d6bec4f3b63d0acd6c7591a41d4f36b67653870cd521f0e26afba54a307b5bbf

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page