From 36bcdc9fe0d132af243aa6dbdf99a937200cfc7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Tue, 3 Nov 2015 22:08:19 +0100 Subject: [PATCH] update README --- README.md | 4 ---- README.rst | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+), 4 deletions(-) delete mode 100644 README.md create mode 100644 README.rst diff --git a/README.md b/README.md deleted file mode 100644 index a5c23b35..00000000 --- a/README.md +++ /dev/null @@ -1,4 +0,0 @@ -gallery-dl -========== - -download image galleries from several image hosting platforms diff --git a/README.rst b/README.rst new file mode 100644 index 00000000..b56acc9c --- /dev/null +++ b/README.rst @@ -0,0 +1,46 @@ +========== +gallery-dl +========== + +gallery-dl is a image gallery downloader for several image hosting platforms. + +Installation +------------ + +Via pip: + +.. code:: bash + + $ pip install gallery-dl + +Or from github: + +.. code:: bash + + $ git clone https://github.com/mikf/gallery-dl.git + $ cd gallery-dl + $ python3 setup.py install + +Usage +----- + +.. code:: bash + + $ gallery-dl URL [URL...] + +Configuration +------------- + +Configuration files for gallery-dl use a JSON-based file format. For a (more or less) complete example, see gallery-dl.conf_. + +gallery-dl searches for configuration files in the following paths: + +* /etc/gallery-dl.conf +* ~/.config/gallery/config.json +* ~/.config/gallery-dl.conf +* ~/.gallery-dl.conf + +Values in later configuration files will override previous ones. + +.. _gallery-dl.conf: https://github.com/mikf/gallery-dl/blob/master/config.json +