https://github.com/stasvinokur/simple_sqlite
This library can help you using sqlite3 library much easier and faster.
https://github.com/stasvinokur/simple_sqlite
database database-connector database-management python python3 sqlite sqlite3
Last synced: 3 months ago
JSON representation
This library can help you using sqlite3 library much easier and faster.
- Host: GitHub
- URL: https://github.com/stasvinokur/simple_sqlite
- Owner: stasvinokur
- License: mit
- Created: 2021-04-27T14:25:51.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-31T07:40:22.000Z (over 4 years ago)
- Last Synced: 2025-02-04T08:46:12.594Z (12 months ago)
- Topics: database, database-connector, database-management, python, python3, sqlite, sqlite3
- Language: Python
- Homepage:
- Size: 28.3 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.txt
- License: LICENSE
Awesome Lists containing this project
README
# simple_sqlite
[](https://badge.fury.io/py/simple-sqlite)
[](https://github.com/Svinokur/simple_sqlite/master/LICENSE)
[](https://pepy.tech/project/simple-sqlite)
[](https://pepy.tech/project/simple-sqlite)
[](https://pepy.tech/project/simple-sqlite)
[](https://en.cryptobadges.io/donate/32GJnnDrPkSKVzrRho84KwD5RsMW4ywMiW)
[](https://en.cryptobadges.io/donate/0xf2691CC12a70B4589edf081E059fD4A1c457417D)
[](https://github.com/Svinokur/simple_sqlite/actions/workflows/windows-tests.yml)
[](https://github.com/Svinokur/simple_sqlite/actions/workflows/macOS-tests.yml)
[](https://github.com/Svinokur/simple_sqlite/actions/workflows/ubuntu-tests.yml)
[](https://open.vscode.dev/Svinokur/simple_sqlite)
It is a fast and convenience package that can help you using sqlite3 library much easier and faster.
## Installation
Use the package manager [pip](https://pip.pypa.io/en/stable/) to install simple_sqlite.
```
pip install simple-sqlite
```
## Usage
This example shows how you can use this library to create database.
```python
from simple_sqlite import SimpleSqlite
ssql = SimpleSqlite('basic.db')
result, message = ssql.create_database()
```
## Contributing
Always suggest creating new methods. Open an issue first to discuss what you would like to add.