summaryrefslogtreecommitdiffstats
path: root/gallery_dl.egg-info
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2025-01-28 19:12:09 -0500
committerLibravatarUnit 193 <unit193@unit193.net>2025-01-28 19:12:09 -0500
commita26df18796ff4e506b16bf32fcec9336233b9e2e (patch)
tree876512f59831cd670a90a0bc92bc85def6ea3d82 /gallery_dl.egg-info
parent0532a387ef5b7fcb4507a9b094dca37a5f635fe1 (diff)
New upstream version 1.28.5.upstream/1.28.5
Diffstat (limited to 'gallery_dl.egg-info')
-rw-r--r--gallery_dl.egg-info/PKG-INFO49
-rw-r--r--gallery_dl.egg-info/SOURCES.txt5
2 files changed, 48 insertions, 6 deletions
diff --git a/gallery_dl.egg-info/PKG-INFO b/gallery_dl.egg-info/PKG-INFO
index 2d2156a..6db2d05 100644
--- a/gallery_dl.egg-info/PKG-INFO
+++ b/gallery_dl.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 2.2
Name: gallery_dl
-Version: 1.28.4
+Version: 1.28.5
Summary: Command-line program to download image galleries and collections from several image hosting sites
Home-page: https://github.com/mikf/gallery-dl
Download-URL: https://github.com/mikf/gallery-dl/releases/latest
@@ -131,9 +131,9 @@ 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.28.4/gallery-dl.exe>`__
+- `Windows <https://github.com/mikf/gallery-dl/releases/download/v1.28.5/gallery-dl.exe>`__
(Requires `Microsoft Visual C++ Redistributable Package (x86) <https://aka.ms/vs/17/release/vc_redist.x86.exe>`__)
-- `Linux <https://github.com/mikf/gallery-dl/releases/download/v1.28.4/gallery-dl.bin>`__
+- `Linux <https://github.com/mikf/gallery-dl/releases/download/v1.28.5/gallery-dl.bin>`__
Nightly Builds
@@ -172,7 +172,6 @@ Scoop
scoop install gallery-dl
-
Homebrew
--------
@@ -229,6 +228,48 @@ This will remove the container after every use so you will always have a fresh e
You can also add an alias to your shell for "gallery-dl" or create a simple bash script and drop it somewhere in your $PATH to act as a shim for this command.
+Nix and Home Manager
+--------------------------
+
+Adding *gallery-dl* to your system environment:
+
+.. code:: nix
+
+ environment.systemPackages = with pkgs; [
+ gallery-dl
+ ];
+
+Using :code:`nix-shell`
+
+.. code:: bash
+
+ nix-shell -p gallery-dl
+
+.. code:: bash
+
+ nix-shell -p gallery-dl --run "gallery-dl <args>"
+
+For Home Manager users, you can manage *gallery-dl* declaratively:
+
+.. code:: nix
+
+ programs.gallery-dl = {
+ enable = true;
+ settings = {
+ extractor.base-directory = "~/Downloads";
+ };
+ };
+
+Alternatively, you can just add it to :code:`home.packages` if you don't want to manage it declaratively:
+
+.. code:: nix
+
+ home.packages = with pkgs; [
+ gallery-dl
+ ];
+
+After making these changes, simply rebuild your configuration and open a new shell to have *gallery-dl* available.
+
Usage
=====
diff --git a/gallery_dl.egg-info/SOURCES.txt b/gallery_dl.egg-info/SOURCES.txt
index 2656948..c5f560b 100644
--- a/gallery_dl.egg-info/SOURCES.txt
+++ b/gallery_dl.egg-info/SOURCES.txt
@@ -74,7 +74,6 @@ gallery_dl/extractor/catbox.py
gallery_dl/extractor/chevereto.py
gallery_dl/extractor/cien.py
gallery_dl/extractor/civitai.py
-gallery_dl/extractor/cohost.py
gallery_dl/extractor/comicvine.py
gallery_dl/extractor/common.py
gallery_dl/extractor/cyberdrop.py
@@ -89,7 +88,6 @@ gallery_dl/extractor/everia.py
gallery_dl/extractor/exhentai.py
gallery_dl/extractor/facebook.py
gallery_dl/extractor/fanbox.py
-gallery_dl/extractor/fanleaks.py
gallery_dl/extractor/fantia.py
gallery_dl/extractor/fapachi.py
gallery_dl/extractor/fapello.py
@@ -161,6 +159,7 @@ gallery_dl/extractor/myhentaigallery.py
gallery_dl/extractor/myportfolio.py
gallery_dl/extractor/naver.py
gallery_dl/extractor/naverwebtoon.py
+gallery_dl/extractor/nekohouse.py
gallery_dl/extractor/newgrounds.py
gallery_dl/extractor/nhentai.py
gallery_dl/extractor/nijie.py
@@ -245,6 +244,7 @@ gallery_dl/extractor/weibo.py
gallery_dl/extractor/wikiart.py
gallery_dl/extractor/wikifeet.py
gallery_dl/extractor/wikimedia.py
+gallery_dl/extractor/xfolio.py
gallery_dl/extractor/xhamster.py
gallery_dl/extractor/xvideos.py
gallery_dl/extractor/yiffverse.py
@@ -263,6 +263,7 @@ gallery_dl/postprocessor/python.py
gallery_dl/postprocessor/rename.py
gallery_dl/postprocessor/ugoira.py
gallery_dl/postprocessor/zip.py
+scripts/run_tests.py
test/test_cache.py
test/test_config.py
test/test_cookies.py