Metadata-Version: 2.1
Name: pydbhub
Version: 0.0.3
Summary: A Python library for accessing and using SQLite databases on DBHub.io
Home-page: https://github.com/LeMoussel/pydbhub
Author: LeMoussel
Author-email: cnhx27@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# pydbhub

A Python library for accessing and using SQLite databases on [DBHub.io](https://dbhub.io/). *This is an early stage work in progress*

## What works now

* Run read-only queries (eg SELECT statements) on databases, returning the results as JSON
* Upload and download your databases
* List the databases in your account
* List the tables, views, and indexes present in a database
* List the columns in a table, view or index, along with their details
* List the branches, releases, tags, and commits for a database
* Generate diffs between two databases, or database revisions
* Download the database metadata (size, branches, commit list, etc.)
* Retrieve the web page URL of a database

### Still to do

* Anything else people suggest and seems like a good idea.
Please try it out, submits PRs to extend or fix things, and report any weirdness or bugs you encounter. :smile:

## Pre-requisites

* [Python](https://www.python.org/) version 3.7
  * Older Python releases should NOT be OK. Newer Python releases should be OK, but only Python 3.7 has been tested (so far).
* A DBHub.io API key
  * These can be generated in your [Settings](https://dbhub.io/pref) page, when logged in.

### Installation

```shell
pip install pydbhub
```

## Further examples

* [SQL Query](https://github.com/LeMoussel/pydbhub/blob/main/examples/sql_query/main.py) - Run a SQL query, return the results as JSON
* [List databases](https://github.com/LeMoussel/pydbhub/blob/main/examples/list_databases/main.py) - List the databases present in your account
* [List tables](https://github.com/LeMoussel/pydbhub/blob/main/examples/list_tables/main.py) - List the tables present in a database
* [List views](https://github.com/LeMoussel/pydbhub/blob/main/examples/list_views/main.py) - List the views present in a database
* [List indexes](https://github.com/LeMoussel/pydbhub/blob/main/examples/list_indexes/main.py) - List the indexes present in a database
* [Retrieve column details](https://github.com/LeMoussel/pydbhub/blob/main/examples/column_details/main.py) - Retrieve the details of columns in a table
* [List branches](https://github.com/LeMoussel/pydbhub/blob/main/examples/list_branches/main.py) - List all branches of a database
* [List releases](https://github.com/LeMoussel/pydbhub/blob/main/examples/list_releases/main.py) - Display the releases for a database
* [List tags](https://github.com/LeMoussel/pydbhub/blob/main/examples/list_tags/main.py) - Display the tags for a database
* [List commits](https://github.com/LeMoussel/pydbhub/blob/main/examples/list_commits/main.py) - Display the commits for a database
* [Generate diff between two revisions](https://github.com/LeMoussel/pydbhub/blob/main/examples/diff_commits/main.py) - Figure out the differences between two databases or two versions of one database
* [Upload database](https://github.com/LeMoussel/pydbhub/blob/main/examples/upload/main.py) - Upload a new database file
* [Download database](https://github.com/LeMoussel/pydbhub/blob/main/examples/download_database/main.py) - Download the complete database file
* [Delete database](https://github.com/LeMoussel/pydbhub/blob/main/examples/delete_database/main.py) - Delete a database
* [Retrieve metadata](https://github.com/LeMoussel/pydbhub/blob/main/examples/metadata/main.py) - Download the database metadata (size, branches, commit list, etc)
* [Web page](https://github.com/LeMoussel/pydbhub/blob/main/examples/webpage/main.py) - Get the URL of the database file in the webUI.  eg. for web browsers


