Metadata-Version: 2.1
Name: sqlfocus
Version: 0.1.7
Summary: UNKNOWN
Home-page: https://github.com/jDan735/sqlfocus
Author: Daniel Zakharov
Author-email: daniel734@bk.ru
License: MIT
Description: # sqlfocus
        Simple wrapper for sql
        
        ## Example of usage (sqlite3)
        
        ```python
        import sqlite3
        
        from sqlfocus import SQLTable
        
        schema = (
            ("id", "INTEGER"),
            ("name", "TEXT")
        )
        
        conn = sqlite3.connect("test.db")
        table = SQLTable("test", conn)
        
        
        "CREATE TABLE IF NOT EXISTS test (id INTEGER, name TEXT);"
        table.create(exists=True, schema=schema)
        
        
        'SELECT * FROM test WHERE id = 23455 AND name = "None"'
        table.select()
        table.select(where=["id = 23455", 'name = "None"'])
        
        
        'INSERT INTO test VALUES (23455, "None")'
        table.insert(23455, "None")
        
        conn.commit()
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3
Description-Content-Type: text/markdown
