Database(s) connector and manager
Project description
database-connector-kit
This python module handles any type of databases connection(s) using a yaml configuration file.
It is a fork coming from fastapi-framework-mvc and flask-framework-mvc.
Created for better package management in between both projects.
Can be loaded standalone outside its original projects.
[!NOTE] If using side by side with either fastapi-framework-mvc or flask-framework-mvc, it will load Environment from one of this framework accordingly to the one you installed int your python env or python root libs.
Default database with builtin driver in sqlalchemy
...
DATABASES:
default: mysql
mysql:
driver: mysql+pymysql
user: "replace this with your database user"
password: "replace this with your database user's password"
database: "replace this with your database name"
address: "replace this with your hostname"
models: "mysql (python module that require to be put under models.persistent module, non blocking if module doesn't exist)"
readonly: false
...
Default database with non builtin driver in sqlalchemy
...
DATABASES:
informix:
driver: informix
user: "replace this with your database user"
password: "replace this with your database user's password"
database: "replace this with your database name"
address: "replace this with your hostname"
models: "informix (python module that require to be put under models.persistent module, non blocking if module doesn't exist)"
params:
SERVER: "replace with your server name"
CLIENT_LOCALE: "replace with your client locale"
DB_LOCALE: "replace with your server locale"
dialects:
informix:
module: IfxAlchemy.IfxPy
class: IfxDialect_IfxPy
informix.IfxPy:
module: IfxAlchemy.IfxPy
class: IfxDialect_IfxPy
informix.pyodbc:
module: IfxAlchemy.pyodbc
class: IfxDialect_pyodbc
readonly: false
...
or:
...
DATABASES:
bigquery:
driver: bigquery
user: "replace this with your database user"
password: "replace this with your database user's password"
database: "replace this with your database name"
address: "replace this with your hostname"
models: "bigquery (python module that require to be put under models.persistent module)"
readonly: false
engine:
location: US
...
dialects, params and engine are non mandatory within the yaml config file.
dialects are for registering database dialects base what the python database lib provides.
params are for putting additional params within the database url link used when sqlalchemy create_engine function is called
engine is all other arguments that can be given to the sqlalchemy create_engine function
Loading configuration
In order to load it you need to create a yaml configuration file with entries as described on sections bellow. This yaml configuration files can have environment variable within encapsuled in ${ENVIRONMENT_NAME} syntax.
import os
from database_connector_kit.config import Environment
Environment.load('config.yml')
Usage
After loading the configuration file, you can create the database's connection(s) by:
from database_connector_kit import Driver
Driver.register_engines()
Driver.init()
There is a safe decorator that enable some sqlalchemy errors to be dealt with and retry reprocessing the function that handles database operations. In order to use it, use de following example:
from database_connector_kit import safe
@safe
def func():
"""
Function that update, select, insert ot even delete contents from the database
"""
pass
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
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 database_connector_kit-1.0.3.tar.gz.
File metadata
- Download URL: database_connector_kit-1.0.3.tar.gz
- Upload date:
- Size: 46.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd8529f31c342abc0fe7739737161bb77ee77fb32caf05173d69f86a424049fa
|
|
| MD5 |
09cf792fea472342070d97b4f133d971
|
|
| BLAKE2b-256 |
681ffeb19d4415822b02d35483af1c4c8b38a6f4962966e4845d1fdf111315b2
|
File details
Details for the file database_connector_kit-1.0.3-py3-none-any.whl.
File metadata
- Download URL: database_connector_kit-1.0.3-py3-none-any.whl
- Upload date:
- Size: 35.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
181814a9ed61ae93c54d760de0bb8d82fb0ef3e3d7e488083d97537e17c67712
|
|
| MD5 |
5ca3f3ebd70e4fc406168102fa79bec4
|
|
| BLAKE2b-256 |
24968257d56dd292b141edf617d9b99a8113bffe03c002aedaa5078f2f406f71
|