Metadata-Version: 2.4
Name: sqlitables
Version: 0.1.0
Summary: Create and maintain SQLite databases more efficiently using object-oriented concepts
Project-URL: Repository, https://github.com/MICHI64N/sqlitables
Project-URL: Changelog, https://github.com/MICHI64N/sqlitables/blob/main/CHANGELOG.md
Author-email: Samantha Bales <samanthabales2006@gmail.com>
License-Expression: MIT
License-File: LICENSE
Keywords: classes,database,object-oriented,oop,sql,sqlite
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Database
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.11
Description-Content-Type: text/markdown

# SQLiTables
*Create and maintain SQLite databases more efficiently using object-oriented concepts*
## Resources
* SQLiTables is built on top of sqlite3, a standard Python module. [Its documentation](https://docs.python.org/3/library/sqlite3.html) may be helpful for using this library.
## Features
*This is an early-stage project with limited features.*
* Connect to the database ([usage](https://github.com/MICHI64N/sqlitables/blob/main/docs/usage.md#connect-to-the-database)).
* Create a table in the database ([usage](https://github.com/MICHI64N/sqlitables/blob/main/docs/usage.md#create-a-table-in-the-database)).
* Insert values into a table ([usage](https://github.com/MICHI64N/sqlitables/blob/main/docs/usage.md#insert-values-into-a-table)).
* Select values from a table ([usage](https://github.com/MICHI64N/sqlitables/blob/main/docs/usage.md#select-values-from-a-table)).