Work with Database as it is dataframe, No need to remember sql queries
Project description
DatabaseOps
A lightweight and fast database operation module without using queries with the ease of python.
Table of Contents
Install
pip install databaseops
Note: Above example will always fetch the latest version. To fetch a specific version, use pip install databaseops==Version
Visit databseops/history to see older versions.
Dependencies
Note: You don't need to worry about dependencies as all those will install automatically at the installing databaseops. This information is just for your knowledge.
Usage
from databaseops import MySQLTable
my_sql_table = MySQLTable(host="localhost", user="root", password="1234", db_name="Test", table_name="Test_table")
Explanation and usage of different methods available to user are as follows
# Populate Table: Add data frame to database table
my_sql_table.populate_table(dataframe=pandas.DataFrame, if_exists: str = 'append')
# Update Table
my_sql_table.update_table(dataframe=pandas.DataFrame, if_exists: str = 'append')
# Set Primary Key
my_sql_table.set_primary_key(column_name= "single column name" or ["list of column names"],
remove_duplicates=True)
# Set Unique Keys
my_sql_table.set_unique_keys(column_name= "single column name" or ["list of column names"],
remove_duplicates=True)
# Read Table
my_sql_table.read_table(chunksize: int = None)
# Table Filter
my_sql_table.table_filter(where: [list of condition], select= "single column name" or ["list of column names"],
limit: int = None, chunksize: int = None)
# Remove Duplicates
my_sql_table.remove_duplicates(list_of_columns= ["list of column names"])
# Sort Table
my_sql_table.sort_table(column: str or dict, order="ascending" or "descending")
# Get Data Type
my_sql_table.get_data_type()
Roadmap
Plan for future releases is to add multi-table join and other query to MySqlOps class. After that plan is add support to multiple databases like redis, mongoDB
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
License
Released 2020 by Ankush Bhise
Project status
This project is in development mode, not completely developed yet. It will developed at slower speed.
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 databaseops-1.0.0.tar.gz
.
File metadata
- Download URL: databaseops-1.0.0.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 17bdc983a466c06c72244659ef148d2a862f8d1153eac1d74dc77dc42bab970c |
|
MD5 | 4af03089d7c84117d0ffb74ba5c0c612 |
|
BLAKE2b-256 | f1d2a3374780e687cbebd7e65d0469229c1afc7d4f0c6ddf8f8d115e1363f905 |
File details
Details for the file databaseops-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: databaseops-1.0.0-py3-none-any.whl
- Upload date:
- Size: 9.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | edc18a171a9c3c1a00dd2dd245d0b3a35818a658421e2888b6aaec714369b86d |
|
MD5 | 0bfc829c28d98ccf6d5d9ea12ca331dc |
|
BLAKE2b-256 | c916af9d81787d0a070b7053a982e71ac3b4039be25ed43c0723a298a39635a6 |