diff --git a/README.md b/README.md index ad9f144e..5922ba1c 100644 --- a/README.md +++ b/README.md @@ -253,7 +253,7 @@ archivebox help # to see more options
-Get ArchiveBox with pip on any other platforms (but extras must be installed manually) +Get ArchiveBox with pip on any other platforms (some extras must be installed manually) First make sure you have [Python >= v3.7](https://realpython.com/installing-python/) and [Node >= v12](https://nodejs.org/en/download/package-manager/) installed. @@ -311,6 +311,14 @@ archivebox config --set PUBLIC_SNAPSHOTS=False archivebox config --set PUBLIC_ADD_VIEW=False ``` +#### 🗄  SQL/Python/Filesystem Usage + +```bash +sqlite3 index.sqlite3 # run SQL queries on your index +archivebox shell # explore the Python API in a REPL +ls ./archive/*/index.html # or inspect snapshots on the filesystem +``` +
grassgrass