Metadata-Version: 2.1
Name: dbtool
Version: 0.0.1
Summary: A lightweight db tools for sql
Home-page: https://github.com/lkqm/dbtool.py
Author: Mario Luo
Author-email: luokaiqiongmou@foxmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/lkqm/dbtool.py/issues
Description: #  dbtool
        A lightweight db tools for sql.
        
        
        ```
        # sql
        db.query_one(sql)
        db.query_all(sql)
        db.query_count(sql)
        db.query_cursor(sql)
        
        db.execute(sql)
        db.executemany(sql)
        db.executescript(sql)
        db.executescript_file(sql)
        
        # crud
        db.insert(dict, table='user')
        db.update(dict, table='user', id_name='id')
        db.delete_by_id(1, table='user', id_name='id')
        db.find_by_id(1, table='user', id_name='id')
        db.increment()
        
        db.find_one('user', id=1)
        db.find('user', type=0)
        
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
