Fork from coleifer/sqlite-web
sqlite-web is a web-based SQLite database browser written in Python.
Project dependencies:
$ sqlite_web /path/to/database.db- Works with your existing SQLite databases, or can be used to create new databases.
- Add or drop:
- Tables
- Columns (yes, you can drop and rename columns!)
- Indexes
- Export data as JSON or CSV.
- Import JSON or CSV files.
- Browse table data.
The syntax for invoking sqlite-web is:
$ sqlite_web [options] /path/to/database-file.dbThe following options are available:
-p,--port: default is 8080-H,--host: default is 127.0.0.1-d,--debug: default is false-x,--no-browser: do not open a web-browser when sqlite-web starts.