pyramid_basemodel - a thin, low level SQLAlchemy bindings to pyramid
Project description
pyramid_basemodel
pyramid_basemodel is a thin, low level package that provides an SQLAlchemy declarative Base and a thread local scoped Session that can be used by different packages whilst only needing to be bound to a db engine once.
Usage
You can use these as base classes for declarative model definitions, e.g.:
from pyramid_basemodel import Base, BaseMixin, Session, save
class MyModel(Base, BaseMixin):
"""Example model class."""
@classmethod
def do_foo(cls):
instance = Session.query(cls).first()
save(instance)
You can then bind these to the sqlalchemy.url in your paster .ini config by importing your model and this package, e.g.:
# for example in yourapp.__init__.py
import mymodel
def main(global_config, **settings):
config = Configurator(settings=settings)
config.include('pyramid_basemodel')
config.include('pyramid_tm')
return config.make_wsgi_app()
Or if this is all too much voodoo, you can just use the bind_engine function:
.. code-block:: python
from pyramid_basemodel import bind_engine from mypackage import mymodel
# assuming engine is a bound SQLAlchemy engine. bind_engine(engine)
Note that the Session is designed to be used in tandem with [pyramid_tm][]. If you don’t include pyramid_tm, you’ll need to take care of committing transactions yourself.
Tests
To run the tests use:
py.test -v --cov pyramid_basemodel tests/
[pyramid_basemodel]: http://github.com/fizyk/pyramid_basemodel [pyramid_simpleauth]: http://github.com/thruflo/pyramid_simpleauth [pyramid_tm]: http://pyramid_tm.readthedocs.org
Release
Install pipenv and –dev dependencies first, Then run:
pipenv run tbump [NEW_VERSION]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyramid_basemodel-0.6.3.tar.gz
.
File metadata
- Download URL: pyramid_basemodel-0.6.3.tar.gz
- Upload date:
- Size: 17.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 610b4e47aa300b00648c19b7e38d39138e00ac1ff9f92f844feccbe599c2d73a |
|
MD5 | fd1134bf27edae7e5a5cf31c76f55b03 |
|
BLAKE2b-256 | df4364063d9847e0172f44b3bb607e00a24e2f3d14fdb8458ab52398d23fc6e6 |
File details
Details for the file pyramid_basemodel-0.6.3-py3-none-any.whl
.
File metadata
- Download URL: pyramid_basemodel-0.6.3-py3-none-any.whl
- Upload date:
- Size: 15.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c679bf094e95ab4064975e361b32c30dcfc7f39d8864d5ad8052e821d92479b0 |
|
MD5 | faf0ec5f8e012ac2823390369949894f |
|
BLAKE2b-256 | b5de9ff4eb74320c5bbbb20f477b83f12be875fd44847388d970c1d76f1f3423 |