Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/msabramo/sqlite_shell
A friendlier SQLite shell
https://github.com/msabramo/sqlite_shell
Last synced: 28 days ago
JSON representation
A friendlier SQLite shell
- Host: GitHub
- URL: https://github.com/msabramo/sqlite_shell
- Owner: msabramo
- License: other
- Created: 2015-02-01T00:28:09.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-02T19:03:21.000Z (almost 10 years ago)
- Last Synced: 2024-05-09T20:39:00.948Z (8 months ago)
- Language: Python
- Size: 227 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sqlite_shell
A friendlier [SQLite](http://sqlite.org/) shell
Borrows from the [shell from
APSW](https://github.com/rogerbinns/apsw/blob/master/tools/shell.py) but
makes it work with Python's built-in
[sqlite3](https://docs.python.org/2/library/sqlite3.html) module or
[pysqlite](https://github.com/ghaering/pysqlite).## About APSW
[APSW](https://github.com/rogerbinns/apsw/) stands for **Another Python
SQLite Wrapper** and was written by [Roger
Binns](http://www.rogerbinns.com/).[APSW](https://github.com/rogerbinns/apsw/) is a Python wrapper for the
[SQLite](http://sqlite.org/) embedded relational database engine. In
contrast to other wrappers such as
[pysqlite](https://github.com/ghaering/pysqlite) it focuses on
being a minimal layer over SQLite attempting just to translate the
complete SQLite API into Python.APSW is Copyright (c) 2004-2015 Roger Binns