mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 09:24:31 +02:00
More detailed README
This commit is contained in:
parent
4e9045e5b0
commit
20a744fb5a
1 changed files with 18 additions and 2 deletions
20
README.md
20
README.md
|
|
@ -5,11 +5,27 @@
|
|||
[](http://sqlite-utils.readthedocs.io/en/latest/?badge=latest)
|
||||
[](https://github.com/simonw/sqlite-utils/blob/master/LICENSE)
|
||||
|
||||
Python utility functions for manipulating SQLite databases
|
||||
Python CLI utility and library for manipulating SQLite databases.
|
||||
|
||||
Install it like this:
|
||||
|
||||
pip3 install sqlite-utils
|
||||
|
||||
Documentation: https://sqlite-utils.readthedocs.io/
|
||||
Now you can do things like this:
|
||||
|
||||
$ sqlite-utils tables dogs.db
|
||||
dogs
|
||||
|
||||
$ sqlite-utils csv dogs.db "select * from dogs"
|
||||
id,age,name
|
||||
1,4,Cleo
|
||||
2,2,Pancakes
|
||||
|
||||
$ sqlite-utils json dogs.db "select * from dogs"
|
||||
[{"id": 1, "age": 4, "name": "Cleo"},
|
||||
{"id": 2, "age": 2, "name": "Pancakes"}]
|
||||
|
||||
Full documentation: https://sqlite-utils.readthedocs.io/
|
||||
|
||||
Related projects:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue