Alchemytools is a set of helpers to be used in any SQLAlchemy project
Project description
This project brings a set of useful tools to be used in any SQLAchemly project.
The idea is to save common problems, for example: Opening/Closing sessions, commiting the sesssin only at the end of the transaction, etc.
Available Tools
Here are all tools available in alchemytools.
Context Managers
managed
This is the basic context manager and it will commit and close your session automatically, at the end of the with block.
with managed(MySessionClass) as session: # Do what you need with your session # Here the session is already closed and commited
If you raise any exception inside the with block, the session will be rolled back and the exception re-raised.
To avoid having all of the function body inside the with block, managed functions as a context manager as well.
@managed(MySessionClass)
def foo(session, *args, **kwargs):
# Do what you need with your session
pass
# call as if the session didn't exist:
foo(2, a='b')
The session is opened every time the function is called and closed whenever it returns or raises an exception. Autommit and rollback rules work as normal.
Additional options
auto_flush: Sets the autoflush option on the SQLAlchemy session, defaults fo False
Executing tests
$ python setup.py test
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
File details
Details for the file Alchemytools-0.7.0.tar.gz
.
File metadata
- Download URL: Alchemytools-0.7.0.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3878a60c93904062432c99f9941cf924df66f9f51def25c2100db547d47dcf7c |
|
MD5 | be76358a13ca72d568d5f415ce363cf5 |
|
BLAKE2b-256 | ddf516f12c3a1e82536f58646f77c5e752a62069f7d0431ff0a65483e7198433 |