Skip to main content

Easy Python database interaction

Project description

easy_db

easy_db is a tool designed to quickly allow Python database interaction capabilities from a consolidated, intuitive user interface provided by the "DataBase" class.

Goals

  • Make common database tasks very easy
  • Intelligently handle different database types
  • Provide intuitive, consistent, Pythonic methods for accessing data
  • Provide good performance without requiring polished query code
  • Expose database connection and cursor to users wanting fine-grained control
  • Just get the data into Python so we can use it!

Quick Start

Let's first connect to a SQLite database.

import easy_db
db = easy_db.DataBase('test_sqlite3_db.db')

Now let's see what tables are available in this database.

tables = db.table_names()

Table columns and types are simple to investigate.

print(db.table_columns_and_types('example_table'))

Let's pull all of the data from a table. We could start with something like "SELECT * ..." but this is way more fun:

data = db.pull_table('example_table')

Note that the table/query data is returned as a list of dictionaries with column names as dictionary keys.

  • Pro Tip: If desired, a Pandas dataframe of the same form as the database table can be easily created from this data structure using:
import pandas
df = pandas.DataFrame(data)

Now perhaps we have an Access database and would like to pull in a table from our SQLite database. easy_db makes this quick and easy and gracefully handles the nuances of dealing with the different databases.

import easy_db

db = easy_db.DataBase('test_sqlite3_db.db')
db_2 = easy_db.DataBase('test_access_db.accdb')

db_2.copy_table(db, 'example_table')

Thanks for checking out easy_db, and please take a look at the methods of the DataBase class if you'd like to see what other capabilities are currently available!

License

MIT

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

easy_db-0.7.6.tar.gz (12.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

easy_db-0.7.6-py3-none-any.whl (11.5 kB view details)

Uploaded Python 3

File details

Details for the file easy_db-0.7.6.tar.gz.

File metadata

  • Download URL: easy_db-0.7.6.tar.gz
  • Upload date:
  • Size: 12.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.0

File hashes

Hashes for easy_db-0.7.6.tar.gz
Algorithm Hash digest
SHA256 64fced8df8d68cb0ca0a3b260326cdf4b87dc86f0859f010563a5071dfba0f9c
MD5 93e4ecd669404bc3b65342be0e6e2ca2
BLAKE2b-256 930a3d29d63ca8417c4a74d3c2750c638b5e107f75112ab12b8ac2e856100634

See more details on using hashes here.

File details

Details for the file easy_db-0.7.6-py3-none-any.whl.

File metadata

  • Download URL: easy_db-0.7.6-py3-none-any.whl
  • Upload date:
  • Size: 11.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.0

File hashes

Hashes for easy_db-0.7.6-py3-none-any.whl
Algorithm Hash digest
SHA256 38f6441d666cb9a6c632972467fcd4727d718b07e37637a2f1340e562139d034
MD5 bf5b48b88b58d460fabdb9f9e56949d0
BLAKE2b-256 208a07d5947f3e646b9006494512fdbe2861c21bbefd0884e0d8930d953dc1c4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page