diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2018-12-01 11:37:37 +0100 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2018-12-01 11:37:37 +0100 |
commit | ac4e3d71e645d532fd176cce8e2ac2aedcbf0035 (patch) | |
tree | fc44b2025dfea9a481c3b7bf74dec1c2aa0731d7 | |
parent | a4ffc8f79436a8fd809005e88f7dc39071621acd (diff) | |
download | crocoite-ac4e3d71e645d532fd176cce8e2ac2aedcbf0035.tar.gz crocoite-ac4e3d71e645d532fd176cce8e2ac2aedcbf0035.tar.bz2 crocoite-ac4e3d71e645d532fd176cce8e2ac2aedcbf0035.zip |
README: Minor improvements
Command line was outdated.
-rw-r--r-- | README.rst | 17 |
1 files changed, 11 insertions, 6 deletions
@@ -1,7 +1,8 @@ crocoite ======== -Archive websites using `headless Google Chrome`_ and its DevTools protocol. +Preservation for the modern web, powered by `headless Google +Chrome`_. .. image:: https://travis-ci.org/PromyLOPh/crocoite.svg?branch=master :target: https://travis-ci.org/PromyLOPh/crocoite @@ -14,7 +15,7 @@ Archive websites using `headless Google Chrome`_ and its DevTools protocol. Quick start ----------- -The following dependencies must be present to run crocoite: +These dependencies must be present to run crocoite: - Python ≥3.6 - aiohttp_ @@ -31,21 +32,25 @@ The following dependencies must be present to run crocoite: .. _bottom: https://github.com/numberoverzero/bottom .. _Google Chrome: https://www.google.com/chrome/ -It is recommended to prepare a virtualenv and let pip handle the dependency -resolution for Python packages instead: +The following commands clone the repository from GitHub_, set up a virtual +environment and install crocoite: + +.. _GitHub: https://github.com/PromyLOPh/crocoite .. code:: bash + git clone https://github.com/PromyLOPh/crocoite.git cd crocoite virtualenv -p python3 sandbox source sandbox/bin/activate pip install . -One-shot commandline interface and pywb_ playback: +One-shot command line interface and pywb_ playback: .. code:: bash - crocoite-grab --output example.com.warc.gz http://example.com/ + pip install pywb + crocoite-grab http://example.com/ example.com.warc.gz rm -rf collections && wb-manager init test && wb-manager add test example.com.warc.gz wayback & $BROWSER http://localhost:8080 |