Metadata-Version: 2.1
Name: hydradb
Version: 2.4.2
Summary: An API for faster and easier SQLite/Python operations
Home-page: https://github.com/rhmtazad/hydraDB
Author: Rahmat Azad
Author-email: rhmtazad@gmail.com
License: MIT License
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown

HydraDB v2.4.2

An API for Faster and Easier SQLite/Python Operations

GitHub Repo: https://github.com/rhmtazad/hydradb/

----------------------------------------------------------------------------------------------

An API for Python and SQLite to manage databases faster and easier.
You can now add, modify, or fetch tables, columns, and rows easily in no time.
Also, you can execute/fetch custom queries using built-in functions for your specific problems.
This API applies some design patterns and principles of OOP for reusability of the codes.

----------------------------------------------------------------------------------------------

Requirements

To make hydraDB work properly you must have installed:

- [Python 3.9] - Latest version of Python
- [SQLite3] - Latest version of SQLite3

----------------------------------------------------------------------------------------------

Installation

You can install through pip or by copying 'hydra' package inside your project folder

    pip install hydradb

----------------------------------------------------------------------------------------------

How to Import and Use the API

To import the package inside your project:

    from hydra import Schema

To have access to the operations:

- If the name or location is not passed  as parameters, it will set them to default
- The default for the name is 'main' and the default for the directory is the project directory.
- The database file will be saved with '.db' extension.

    name = 'myDB'
    location = 'C:\Projects\Python'

    db = Schema(name, location) # or use Schema() without passing parameter values

----------------------------------------------------------------------------------------------

General Operations

Execute a query from the database:

    execute(query) # execute('select * from tbl')

Fetch a query from the database:

    fetch(query) # fetch('select * from tbl')

----------------------------------------------------------------------------------------------

Table Operations

Add one or more tables in database:

    add_table(*tables) # add_table('tbl1', 'tbl2', tbl3')

Drop one or multiple tables from a database:

    drop_table(*tables) # drop_table('tbl1', 'tbl2', 'tbl3')

Rename a table from the database:

    rename_table(old_name, new_name) # rename_table('old', 'new')

Create a table with the given columns:

    form_table(table, columns) # form_table(table='tbl', name='text', age='integer')

Copy a table's data to a new one:

    copy_table(origin_tbl, new_tbl, columns) # copy_table('origin', 'new', col1='text')

Fetch a table's data from a database:

    fetch_table(table) # fetch_table('student')

----------------------------------------------------------------------------------------------

Column Operations

Add one or more columns to a table:

    add_column(table, columns) # add_column('tbl', name='text', age='integer')

Drop one or more columns from a table:

    drop_column(table, columns) # drop_column('tbl', name='text', age='integer')

Add a column to a table and set it as a foreign key:

    add_fk(table, column, reference_tbl, reference_col)

Rename a column from a table:

    rename_column(tbl, current_name, new_name)

Fetch one or more columns from a table:

    fetch_columns(table, *columns) # fetch_columns('tbl', 'name', 'age')

Fetch column names from a table:

    fetch_column_names(table)

Filter based on one or more column's values:

    filter_column(table, **col_val) # filter_column('tbl', name='R', age=25)

----------------------------------------------------------------------------------------------

Row Operations

Insert a row in a table:

    insert_row(table, data) # insert_row('tbl', name='R', age='25')

Delete a row from a table:

    delete_row(table, row_id) # delete_row(table='student', row_id=1)

Update a row in a table:

    update_row(table, row_id, data) # update_row(table='student', row_id=1, name='R')

Fetch one or more cells within a row:

    fetch_row(table, row_id, *columns)

Count number of rows based on columns and their values:

    count_rows(table, col_val) # count_rows(table='tbl', name='R', age=25)

----------------------------------------------------------------------------------------------

License

MIT License

Copyright 2021 Rahmat Azad

Permission is hereby granted, free of charge,
to any person obtaining a copy of this software
and associated documentation files (the "Software"),
to deal in the Software without restriction,
including without limitation the rights to use, copy,
modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit
persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this
permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT
WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.

