diff options
author | gabrielgio <gabriel.giovanini@pm.me> | 2021-07-27 23:15:53 +0200 |
---|---|---|
committer | gabrielgio <gabriel.giovanini@pm.me> | 2021-07-27 23:28:51 +0200 |
commit | b8d69f9bf5a03fd6d8b6a477f3b7ca8f10c27bda (patch) | |
tree | 6652fd8b3e89b652791167e73b293b57d0b6496b /importer/providers/i_reddit.py | |
parent | 3d54b3d91d0c175feae82c413fd0139545d46e2a (diff) | |
download | reddit-nextcloud-importer-b8d69f9bf5a03fd6d8b6a477f3b7ca8f10c27bda.tar.gz reddit-nextcloud-importer-b8d69f9bf5a03fd6d8b6a477f3b7ca8f10c27bda.tar.bz2 reddit-nextcloud-importer-b8d69f9bf5a03fd6d8b6a477f3b7ca8f10c27bda.zip |
feat: Move to gallery-dl
As it turns out there is already a project that does what I want but
better.
Diffstat (limited to 'importer/providers/i_reddit.py')
-rw-r--r-- | importer/providers/i_reddit.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/importer/providers/i_reddit.py b/importer/providers/i_reddit.py deleted file mode 100644 index 13fc70e..0000000 --- a/importer/providers/i_reddit.py +++ /dev/null @@ -1,15 +0,0 @@ -from importer.providers.raw_image_base import RawImageProviderBase - - -class IReddit(RawImageProviderBase): - regex = "^.*i\\.redd\\.it.*\\.(jpg|jpeg|gif)$" - _TEST = [ - { - "url": "https://i.redd.it/pjj1ll1b2rr41.jpg", - "paths": ["source_pjj1ll1b2rr41.jpg"] - }, - { - "url": "https://i.redd.it/55vpi6ol5jc71.gif", - "paths": ['source_55vpi6ol5jc71.gif'] - } - ] |