Database for Humans
Project description
dbConnect: Database for Humans
WHY?
dbConnect was made as a little module to be used in small projects that need to do some interactions with MySQL or PostgreSQL databases.
It’s just a big time saver for developers specially for making data analyzing and data scraping and it helps to keep your code clean and readable by using python-like structure.
Installation
requirements:
dbConnect uses mysql.connector and mysqlclient modules for mysql, install one of them using:
$ apt-get install python3-mysql.connector
$ apt-get install python-mysql.connector
Or using offical site: https://dev.mysql.com/downloads/connector/python/
$ pip install mysqlclient
More details on mysqlclient: https://github.com/PyMySQL/mysqlclient-python
For PostgreSQL install psycopg2 module:
$ pip install psycopg2
using pip:
$ pip install dbConnect
from source code:
$ git clone git@gitlab.com:mastizada/dbConnect.git
$ cd dbConnect
$ sudo python setup.py install
Usage
Importing and making a connection:
>>> from dbConnect import DBConnect
>>> database = DBConnect(credentials.json)
>>> database.fetch('tableName', limit=5, filters={'company': 'pyninjas'})
Documentation
Alternate Docs: https://pythonhosted.org/dbConnect/
Check generated documentation using:
$ pydoc3 dbConnect
or
$ pydoc3 -p 8000
and open http://localhost:8000/ in browser
Enjoy
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 dbConnect-2.1.tar.gz
.
File metadata
- Download URL: dbConnect-2.1.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bcbcf71000d705bb85c4a80c0fe27d5bed3432d8c6040cb646da279d9eed15fd |
|
MD5 | 7418d5378bb4995e55ef542df957c774 |
|
BLAKE2b-256 | 0f77426037a43714786b64dd150da245ee23bd698cf37f74a6768d9a822b2f05 |
File details
Details for the file dbConnect-2.1-py2.py3-none-any.whl
.
File metadata
- Download URL: dbConnect-2.1-py2.py3-none-any.whl
- Upload date:
- Size: 12.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0668869e28a558d4c9554053cca821208f0c0792cbe24aede246a434c60b97a9 |
|
MD5 | b7845ffd2bf51a4ad506481ebac2297a |
|
BLAKE2b-256 | c0407bf772af9251c9095d3ceeef46580255b8ad68e119dd3d3825134e54a01b |