#Py2sqlite3
Py2sqlite3 is a library that facilitates the communication between python objects and sqlite3 databases
Installation
https://pypi.org/project/py2sqlite3/
pip install py2sqlite3
Command line usage (only to run test):
python -m py2sqlite3
Usage as library
Example
from py2sqlite3 import Py2sqlite3
class Foo:
bar = 0
class Foo2(Foo):
pass
py2sql = Py2sqlite3()
py2sql.db_connect('test.db')
py2sql.save_class(Foo) # saves class Foo
py2sql.save_class_hierarchy(Foo) # saves Foo and Foo2
py2sql.save_object(Foo()) # saves object of class Foo
py2sql.delete_class(Foo) # deletes class Foo
py2sql.delete_class_hierarchy(Foo) # deletes Foo and Foo2
py2sql.delete_object(Foo()) # deletes object of class Foo
py2sql.db_disconnect()
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
py2sqlite3-0.15.tar.gz
(6.6 kB
view details)
File details
Details for the file py2sqlite3-0.15.tar.gz.
File metadata
- Download URL: py2sqlite3-0.15.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6b2d7e5dde0f9612b37a290b2c180ec519d08d0b3f61dd38fea4a3907fe4d4f
|
|
| MD5 |
8352259a2c195ca9272f9e8078214181
|
|
| BLAKE2b-256 |
82c7e1ed8f6c5d3ad6b3ea72890fa74cfe28d5259d586fb28ebec3c6365da95e
|