An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

# simple_sqlite

[![PyPI version](https://badge.fury.io/py/simple-sqlite.svg)](https://badge.fury.io/py/simple-sqlite)
[![MIT License](https://img.shields.io/apm/l/atomic-design-ui.svg?)](https://github.com/Svinokur/simple_sqlite/master/LICENSE)
[![Downloads](https://pepy.tech/badge/simple-sqlite)](https://pepy.tech/project/simple-sqlite)
[![Downloads](https://pepy.tech/badge/simple-sqlite/month)](https://pepy.tech/project/simple-sqlite)
[![Downloads](https://pepy.tech/badge/simple-sqlite/week)](https://pepy.tech/project/simple-sqlite)
[![Donate with Bitcoin](https://en.cryptobadges.io/badge/micro/32GJnnDrPkSKVzrRho84KwD5RsMW4ywMiW)](https://en.cryptobadges.io/donate/32GJnnDrPkSKVzrRho84KwD5RsMW4ywMiW)
[![Donate with Ethereum](https://en.cryptobadges.io/badge/micro/0xf2691CC12a70B4589edf081E059fD4A1c457417D)](https://en.cryptobadges.io/donate/0xf2691CC12a70B4589edf081E059fD4A1c457417D)

[![Windows](https://github.com/Svinokur/simple_sqlite/actions/workflows/windows-tests.yml/badge.svg)](https://github.com/Svinokur/simple_sqlite/actions/workflows/windows-tests.yml)
[![macOS](https://github.com/Svinokur/simple_sqlite/actions/workflows/macOS-tests.yml/badge.svg)](https://github.com/Svinokur/simple_sqlite/actions/workflows/macOS-tests.yml)
[![Ubuntu](https://github.com/Svinokur/simple_sqlite/actions/workflows/ubuntu-tests.yml/badge.svg)](https://github.com/Svinokur/simple_sqlite/actions/workflows/ubuntu-tests.yml)

[![Open in Visual Studio Code](https://open.vscode.dev/badges/open-in-vscode.svg)](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.