Metadata-Version: 2.1
Name: alphadb
Version: 1.0.0a1
Summary: SQL Database versioning toolset
Home-page: https://github.com/w-kuipers/alphadb
Author: Wibo Kuipers
Author-email: wibokuip@gmail.com
Project-URL: Bug Tracker, https://github.com/w-kuipers/alphadb/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

![AlphaDB](https://github.com/w-kuipers/alphadb/blob/main/assets/ALPHADB_Github-Social-Preview.png?raw=true)

[![GitHub releases](https://img.shields.io/github/v/release/w-kuipers/alphadb)](https://github.com/w-kuipers/alphadb/releases)
[![PyPI release](https://img.shields.io/pypi/v/alphadb.svg)](https://pypi.org/project/alphadb/)
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
[![](https://img.shields.io/github/last-commit/w-kuipers/alphadb?label=last%20modified)](https://github.com/w-kuipers/alphadb)

# AlphaDB

A toolset for SQL database versioning.

## Still in alpha stage

Yes, it's ironic. But this package is still in the alpha stage. Breaking changes should be expected.

<details>
  <summary>Table of Contents</summary>
  <ol>
    <li><a href="#documentation">Documentation</a></li>
    <li>
      <a href="#installation">Installation</a>
      <ul>
        <li><a href="#install-using-pip">Install using PIP</a></li>
      </ul>
    </li>
    <li><a href="#usage">Usage</a></li>
    <li><a href="#exceptions">Exceptions</a></li>
    <li><a href="#license">License</a></li>
  </ol>
</details>

## Documentation

Visit the [official documentation](https://alphadb-docs.vercel.app/)

## Installation

### Install using `PIP`

    pip install alphadb

Note that `pip` refers to the Python 3 package manager. In an environment where Python 2 is also present the correct command may be `pip3`.

## Usage

Import one of the prebuild AlphaDB classes (Here we will use Mysql).
``` python
from alphadb import AlphaDBMysql
```
Connect to a database.
``` python
db = AlphaDBMysql()
db.connect(
    host="localhost",
    user="user",
    password="password",
    database="database"
)
```
Make sure the database is empty, back it up if necessary. If the database is not empty, you can use the `vacate` method.
Note that this function will erase ALL data in the database and there is no way to get it back. For extra safety the argument `confirm=True` is required for the function to run.
``` python
db.vacate(confirm=True)
```
The database is now ready to be initialized. The `init` method will create the `adb_conf` table. This holds configuration data for the database.
``` python
db.init()
```
Now we update the database. For this we need to give it a structure. The database version information is a JSON structure formatted as such:
``` python
database_version_source = {
    "name": "mydb", ## Database name, does not have to, but is advised to match the actual database name
    "version": [ ## List containing database versions
        {
            "_id": "0.1.0", ## Database version
            "createtable": { ## Object containing tables to be created,
                "customers": { ## Object key will be used as table name
                    "primary_key": "id",
                    "name": { ## Object key will be used as column name
                        "type": "VARCHAR", ## Data type
                        "length": 100, ## Date max length,
                    },
                    "id": {
                        "type": "INT",
                        "a_i": True
                    }
                },
            }
        },
        {
            "_id": "1.0.0",
            "createtable": {
                "orders": {
                    "primary_key": "id",
                    "id": {
                        "type": "INT",
                        "a_i": True
                    },
                    "date": {
                        "type": "DATETIME",
                    },
                    "note": {
                        "type": "TEXT",
                        "null": True
                    }
                }
            }
        }
    ]
}
```

Then call the `update` method.
``` python
db.update(version_source=database_version_source)
```
## Exceptions

#### NoConnection

The `NoConnection` exception is thrown when a method is called while no database connection is active.

#### DBNotInitialized

The `DBNotInitialized` exception is thrown when the database is not yet initialized.
``` python
Database.init() ## Will initialize the database and thus resolve the error
```
#### DBTemplateNoMatch

The `DBTemplateNoMatch` exception is thrown when de database was previously updated using another version source.
On initialization, a table `adb_conf` is created. In this table the column `template` is used to save the version source template name. Make sure it matches.

## License

[GPL-3.0 LICENSE](https://github.com/w-kuipers/alphadb/blob/main/LICENSE)
