Metadata-Version: 2.1
Name: wessql
Version: 0.0.1
Summary: This is the simplest module for quick work with sqlite3.
Home-page: https://github.com/JohnyWessel/simple-database
Author: w3ssel
Author-email: johnywessel@gmail.com
Project-URL: GitHub, https://github.com/johnywessel
Keywords: wessql
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.1.1
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Simple DB Library #

## Quick Guide ##

Using this library is very easy:

First, we need to setup database direcroty
For this we use `setdirecritry` it's look like that:

    import simpledb as s

    s.setdirecritry("path//database.db")


Examples how to use all operations:

Creating table with `CreateTable(name: str, collumn: str)`:

    s.table.CreateTable("table_name", "int_values INT, str_values STR")


Adding to table items with `AddToTable(table: str, items: list)`:

    s.table.AddToTable("table_name", [1,"str"])


Deleting items from table with `DeleteFromTable(table: str, collumn: str, target: list)`:

    s.table.DeleteFromTable("table_name", "int_values" [1])


Getting data from table with `search.item(table: str, target: list)`:

    print(s.search.item("table_name", "str")) or print(s.search.item("table_name", 1))



----------


## Creator ##
site:  [*click*](https://johnywessel.github.io/) 
