Metadata-Version: 2.1
Name: sqlite3-plus
Version: 0.1.5
Summary: UNKNOWN
Home-page: UNKNOWN
Author: doesdoing
Author-email: doesdong@hotmail.com.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

Example:
import sqlite3_plus

1.search SQL:
    test=sqlite3_plus.sqlite3_plus(path='./xxx.db',Tab='xxx').find(ip='xxx')
2.add SQL:
    sqlite3_plus.sqlite3_plus(path='./xxx.db',Tab='xxx').add(Data={"a":"xxx","b":"xxx"})
3.update SQL:
    sqlite3_plus.sqlite3_plus(path='./xxx.db',Tab='xxx').update(Data={"a":"xxx","b":"xxx"} , ID='xxxx')
4.delete SQL:
    sqlite3_plus.sqlite3_plus(ath='./xxx.db',Tab='xxx')..delete(ID=['xx','xx'])

