aboutsummaryrefslogtreecommitdiffstats
path: root/gallery_dl.egg-info
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2022-03-15 00:19:57 -0400
committerLibravatarUnit 193 <unit193@unit193.net>2022-03-15 00:19:57 -0400
commitc2e774d3f5a4499b8beb5a12ab46a0099b16b1e7 (patch)
treea14107397b5bcb491aa4f4fb3e0feb4582e1879b /gallery_dl.egg-info
parent7900ee4e3692dbd8056c3e47c81bb22eda030b65 (diff)
New upstream version 1.21.0.upstream/1.21.0
Diffstat (limited to 'gallery_dl.egg-info')
-rw-r--r--gallery_dl.egg-info/PKG-INFO48
-rw-r--r--gallery_dl.egg-info/SOURCES.txt5
2 files changed, 29 insertions, 24 deletions
diff --git a/gallery_dl.egg-info/PKG-INFO b/gallery_dl.egg-info/PKG-INFO
index 7e3e5cf..009ede8 100644
--- a/gallery_dl.egg-info/PKG-INFO
+++ b/gallery_dl.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: gallery-dl
-Version: 1.20.5
+Version: 1.21.0
Summary: Command-line program to download image galleries and collections from several image hosting sites
Home-page: https://github.com/mikf/gallery-dl
Author: Mike Fährmann
@@ -72,14 +72,14 @@ easily installed or upgraded using pip_:
.. code:: bash
- $ python3 -m pip install -U gallery-dl
+ python3 -m pip install -U gallery-dl
Installing the latest dev version directly from GitHub can be done with
pip_ as well:
.. code:: bash
- $ python3 -m pip install -U -I --no-deps --no-cache-dir https://github.com/mikf/gallery-dl/archive/master.tar.gz
+ python3 -m pip install -U -I --no-deps --no-cache-dir https://github.com/mikf/gallery-dl/archive/master.tar.gz
Note: Windows users should use :code:`py -3` instead of :code:`python3`.
@@ -89,7 +89,7 @@ To ensure these packages are up-to-date, run
.. code:: bash
- $ python3 -m pip install --upgrade pip setuptools wheel
+ python3 -m pip install --upgrade pip setuptools wheel
Standalone Executable
@@ -98,8 +98,8 @@ Standalone Executable
Prebuilt executable files with a Python interpreter and
required Python packages included are available for
-- `Windows <https://github.com/mikf/gallery-dl/releases/download/v1.20.5/gallery-dl.exe>`__
-- `Linux <https://github.com/mikf/gallery-dl/releases/download/v1.20.5/gallery-dl.bin>`__
+- `Windows <https://github.com/mikf/gallery-dl/releases/download/v1.21.0/gallery-dl.exe>`__
+- `Linux <https://github.com/mikf/gallery-dl/releases/download/v1.21.0/gallery-dl.bin>`__
| Executables build from the latest commit can be found at
| https://github.com/mikf/gallery-dl/actions/workflows/executables.yml
@@ -112,7 +112,7 @@ Linux users that are using a distro that is supported by Snapd_ can install *gal
.. code:: bash
- $ snap install gallery-dl
+ snap install gallery-dl
Chocolatey
@@ -122,7 +122,7 @@ Windows users that have Chocolatey_ installed can install *gallery-dl* from the
.. code:: powershell
- $ choco install gallery-dl
+ choco install gallery-dl
Scoop
@@ -132,7 +132,7 @@ Scoop
.. code:: powershell
- $ scoop install gallery-dl
+ scoop install gallery-dl
Usage
@@ -143,7 +143,7 @@ from:
.. code:: bash
- $ gallery-dl [OPTION]... URL...
+ gallery-dl [OPTION]... URL...
See also :code:`gallery-dl --help`.
@@ -155,21 +155,21 @@ Download images; in this case from danbooru via tag search for 'bonocho':
.. code:: bash
- $ gallery-dl "https://danbooru.donmai.us/posts?tags=bonocho"
+ gallery-dl "https://danbooru.donmai.us/posts?tags=bonocho"
-Get the direct URL of an image from a site that requires authentication:
+Get the direct URL of an image from a site supporting authentication with username & password:
.. code:: bash
- $ gallery-dl -g -u "<username>" -p "<password>" "https://seiga.nicovideo.jp/seiga/im3211703"
+ gallery-dl -g -u "<username>" -p "<password>" "https://twitter.com/i/web/status/604341487988576256"
Filter manga chapters by language and chapter number:
.. code:: bash
- $ gallery-dl --chapter-filter "lang == 'fr' and 10 <= chapter < 20" "https://mangadex.org/title/2354/"
+ gallery-dl --chapter-filter "lang == 'fr' and 10 <= chapter < 20" "https://mangadex.org/title/2354/"
| Search a remote resource for URLs and download images from them:
@@ -177,7 +177,7 @@ Filter manga chapters by language and chapter number:
.. code:: bash
- $ gallery-dl "r:https://pastebin.com/raw/FLwrCYsT"
+ gallery-dl "r:https://pastebin.com/raw/FLwrCYsT"
If a site's address is nonstandard for its extractor, you can prefix the URL with the
@@ -185,7 +185,7 @@ extractor's name to force the use of a specific extractor:
.. code:: bash
- $ gallery-dl "tumblr:https://sometumblrblog.example"
+ gallery-dl "tumblr:https://sometumblrblog.example"
Configuration
@@ -233,7 +233,7 @@ Username & Password
Some extractors require you to provide valid login credentials in the form of
a username & password pair. This is necessary for
-``nijie`` and ``seiga``
+``nijie``
and optional for
``aryion``,
``danbooru``,
@@ -259,7 +259,7 @@ You can set the necessary information in your configuration file
{
"extractor": {
- "seiga": {
+ "twitter": {
"username": "<username>",
"password": "<password>"
}
@@ -272,8 +272,8 @@ or you can provide them directly via the
.. code:: bash
- $ gallery-dl -u <username> -p <password> URL
- $ gallery-dl -o username=<username> -o password=<password> URL
+ gallery-dl -u <username> -p <password> URL
+ gallery-dl -o username=<username> -o password=<password> URL
Cookies
@@ -317,7 +317,7 @@ the :code:`--cookies` command-line option:
.. code:: bash
- $ gallery-dl --cookies "$HOME/path/to/cookies.txt" URL
+ gallery-dl --cookies "$HOME/path/to/cookies.txt" URL
OAuth
@@ -335,7 +335,7 @@ To link your account to *gallery-dl*, start by invoking it with
.. code:: bash
- $ gallery-dl oauth:flickr
+ gallery-dl oauth:flickr
You will be sent to the site's authorization page and asked to grant read
access to *gallery-dl*. Authorize it and you will be shown one or more
@@ -346,8 +346,8 @@ To authenticate with a ``mastodon`` instance, run *gallery-dl* with
.. code:: bash
- $ gallery-dl oauth:mastodon:pawoo.net
- $ gallery-dl oauth:mastodon:https://mastodon.social/
+ gallery-dl oauth:mastodon:pawoo.net
+ gallery-dl oauth:mastodon:https://mastodon.social/
diff --git a/gallery_dl.egg-info/SOURCES.txt b/gallery_dl.egg-info/SOURCES.txt
index edcc5e2..4139a4d 100644
--- a/gallery_dl.egg-info/SOURCES.txt
+++ b/gallery_dl.egg-info/SOURCES.txt
@@ -6,6 +6,7 @@ setup.cfg
setup.py
data/completion/_gallery-dl
data/completion/gallery-dl
+data/completion/gallery-dl.fish
data/man/gallery-dl.1
data/man/gallery-dl.conf.5
docs/gallery-dl-example.conf
@@ -102,6 +103,7 @@ gallery_dl/extractor/kabeuchi.py
gallery_dl/extractor/keenspot.py
gallery_dl/extractor/kemonoparty.py
gallery_dl/extractor/khinsider.py
+gallery_dl/extractor/kissgoddess.py
gallery_dl/extractor/kohlchan.py
gallery_dl/extractor/komikcast.py
gallery_dl/extractor/lightroom.py
@@ -118,6 +120,7 @@ gallery_dl/extractor/mangapark.py
gallery_dl/extractor/mangasee.py
gallery_dl/extractor/mangoxo.py
gallery_dl/extractor/mastodon.py
+gallery_dl/extractor/mememuseum.py
gallery_dl/extractor/message.py
gallery_dl/extractor/moebooru.py
gallery_dl/extractor/myhentaigallery.py
@@ -166,9 +169,11 @@ gallery_dl/extractor/speakerdeck.py
gallery_dl/extractor/subscribestar.py
gallery_dl/extractor/tapas.py
gallery_dl/extractor/test.py
+gallery_dl/extractor/toyhouse.py
gallery_dl/extractor/tsumino.py
gallery_dl/extractor/tumblr.py
gallery_dl/extractor/tumblrgallery.py
+gallery_dl/extractor/twibooru.py
gallery_dl/extractor/twitter.py
gallery_dl/extractor/unsplash.py
gallery_dl/extractor/vanillarock.py