Database Factory;
Project description
database-factory
Database factory is used to manage/create database connection with execute queries using the connection. The concept of having single source to connect various databases and perform database operations.
User need not to worry on the crafting the connection string and to identify the methods for the database operations. Database factory supports DML / DDL executions and have support of Pandas DataFrame to create or replace existing tables.
Database factory is wrapper on sqlalchemy for crafting the connection and supports below databases:
* Sqlite3
* PostgreSQl
* BigQuery
* Snowflake
* MariaDB
* MySQL
Database factory can be enhanced for all the sqlalchemy supported database.
Getting Started
pip install database-factory
Using database-factory
from database_factory.manager import DatabaseManager
import tempfile
temp_dir = tempfile.gettempdir()
db = DatabaseManager(engine_type="sqlite", database="test_db", sqlite_db_path=temp_dir)
db.create_session()
db.execute_sql(sql="create table test (id int PRIMARY KEY)")
db.execute_sql(sql="insert into test values (1)")
db.execute_sql(sql="insert into test values (2)")
rows = db.execute_sql(sql="select * from test")
if rows:
print(rows)
df = db.get_df(sql="select * from test")
print(df)
db.execute_df(panda_df=df, table_name=copy_test, exist_action="replace")
# db.execute_df(panda_df=df, table_name=copy_test, exist_action="replace", chunk_size=100)
db.execute_sql(sql="insert into copy_test values (3)")
rows_copy = db.execute_sql(sql="select * from copy_test")
if rows_copy:
print(rows_copy)
Appendix
Supported database type:
* sqlite `default`
* postgres
* mysql
* mariadb
* snowflake
Connection parameters for sqlite:
* engine_type: sqlite
* database: <name of database>
* sqlite_db_path: <path where database will be created>
Connection parameters for postgres:
* engine_type: postgres
* database: <name of database>
* username: <postgres user>
* password: <user password>
* host: <host of postgres service>
* port: <port of postgres service>
Connection parameters for mysql:
* engine_type: mysql
* database: <name of database>
* username: <mysql user>
* password: <user password>
* host: <host of mysql service>
* port: <port of mysql servic\>
Connection parameters for mariadb:
* engine_type: mariadb
* database: <name of database>
* username: <mariadb user>
* password: <user password>
* host: <host of mariadb service>
* port: <port of mariadb service>
Connection parameters for snowflake:
* engine_type: snowflake
* database: <name of database>
* username: <snowflake user>
* password: <user password>
* schema: <schema name>
* snowflake_role: <snowflake role>
* snowflake_warehouse: <snowflake warehouse>
* snowflake_account: <snowflake account>
Connection parameters for bigquery:
* engine_type: bigquery
* database: <name of database>
Getting connection properties from AWS / GCP Secret Manager Service:
Note:
- GCP:
- On Cloud Server:
- Set server to execute the all cloud api services
- Attach following permissions
- Project Viewer
- Secret Manager Secret Accessor
- On Premises:
- Attach following permissions to user service account and download service account file for authentication:
- Project Viewer
- Secret Manager Secret Accessor
- Set environment variable "GOOGLE_APPLICATION_CREDENTIALS" pointing to service account file.
- Attach following permissions to user service account and download service account file for authentication:
- On Cloud Server:
- AWS:
- On Cloud Server:
- Set execution profile with "secretsmanager:GetSecretValue" policy
- On Premises:
- AWS should be configured
- User should have permissions of "secretsmanager:GetSecretValue" policy.
- On Cloud Server:
* engine_type: bigquery
* database: <name of database>
* secret_id: <Secret name of AWS / GCP Secret Manager Service>
* secrete_manager_cloud: <aws or gcp as per cloud>
* aws_region: <aws region: default=> us-east-1>
Development Setup
Using virtualenv
python3 -m venv env
source env/bin/activate
pip install .
Contributing
- Fork repo- https://github.com/shrivastava-v-ankit/database-factory.git
- Create your feature branch -
git checkout -b feature/name
- Add Python test (pytest) and covrage report for new/changed feature.
- Commit your changes -
git commit -am "Added name"
- Push to the branch -
git push origin feature/name
- Create a new pull request
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
Hashes for database_factory-1.0.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a66c9fe9554def4682314ce2eba78d5e8239ec5b6ee48a8763d35898f5d1c873 |
|
MD5 | 1b1cc3eef0b528ff9d50147a926185a6 |
|
BLAKE2b-256 | 01c8bf92cce5186fd2c3f6b4dc63b3b99cd9d9798db2976dc336bd58476ae35d |