No project description provided
Project description
integresql-client-python
Python client for IntegreSQL.
Current stable version
0.9.2
Python version
integresql-client-python is tested against Python 3.8+. Older Python versions may work, or may not.
How to use
from integresql_client_python import IntegreSQL
integresql = IntegreSQL('template_directory')
# integresql.debug = True
with integresql as tpl:
with tpl.initialize() as dbinfo:
# dbinfo is None if template is already initialized
if dbinfo:
# connect and import fixtures
print("initialize db with fixtures with db data:", dbinfo)
db = tpl.get_database()
with db as dbinfo:
# connect and do whatever you want
print("Do your tests with db data:", dbinfo)
# or manually, you can use as many databases as you need or IntegreSQL will allow
dbinfo1 = db.open()
print("Do your tests", dbinfo1)
dbinfo2 = db.open()
print("Do your tests", dbinfo2)
dbinfo3 = db.open()
print("Do your tests", dbinfo3)
# connect and do whatever you want
# do not forget about closing resources:
db.close(dbinfo1)
db.close(dbinfo2)
db.close(dbinfo3)
Authors
- Marcin Sztolcman (marcin@urzenia.net)
Contact
If you like or dislike this software, please do not hesitate to tell me about it via email (marcin@urzenia.net).
If you find a bug or have an idea to enhance this tool, please use GitHub's issues.
ChangeLog
v0.9.2
- fixed a bug where test database was returned to pool after every test and got reused.
Renamed method
Database.close()toDatabase.mark_unmodified(). UsingDatabaseinwithblock doesn't return selected database to pool anymore.
v0.9.1
- allow using multiple template paths
v0.9.0
- first public 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 Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file integresql_client_python-0.9.2-py3-none-any.whl.
File metadata
- Download URL: integresql_client_python-0.9.2-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24a4eb8d39c82b16fbe471cde47b883c87c45c34b0e176dba4928b2b969c6b35
|
|
| MD5 |
f55837ff0b33f843ac0f00368d1b0843
|
|
| BLAKE2b-256 |
3ce933dd4260c266415cc693f303db71dca2ef8e13be88ba98a63a884c86d07e
|