mirror of
https://github.com/KevinMidboe/bulk-downloader-for-reddit.git
synced 2026-01-21 08:36:18 +00:00
Compare commits
27 Commits
v1.6.4.2
...
feature/us
| Author | SHA1 | Date | |
|---|---|---|---|
| b782b2b568 | |||
| da13a2f14c | |||
| 289418b485 | |||
| f32d17796a | |||
|
|
d6194c57d9 | ||
|
|
cd87a4a120 | ||
|
|
08cddf4c83 | ||
|
|
88fa9e742d | ||
|
|
1c17f174a8 | ||
|
|
9b36336ac3 | ||
|
|
35e551f20c | ||
|
|
0f2bda9c34 | ||
|
|
8ab694bcc1 | ||
|
|
898f59d035 | ||
|
|
6b6db37185 | ||
|
|
d4a5100128 | ||
|
|
22047338e2 | ||
|
|
b16cdd3cbb | ||
|
|
2a8394a48c | ||
|
|
eac4404bbf | ||
|
|
fae49d50da | ||
|
|
7130525ece | ||
|
|
2bf1e03ee1 | ||
|
|
15a91e5784 | ||
|
|
344201a70d | ||
|
|
92e47adb43 | ||
|
|
4d385fda60 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -4,3 +4,4 @@ MANIFEST
|
|||||||
__pycache__/
|
__pycache__/
|
||||||
src/__pycache__/
|
src/__pycache__/
|
||||||
config.json
|
config.json
|
||||||
|
env/
|
||||||
|
|||||||
116
README.md
116
README.md
@@ -1,10 +1,12 @@
|
|||||||
# Bulk Downloader for Reddit
|
# Bulk Downloader for Reddit
|
||||||
Downloads media from reddit posts.
|
|
||||||
|
Downloads media from reddit posts. Made by [u/aliparlakci](https://reddit.com/u/aliparlakci)
|
||||||
|
|
||||||
## [Download the latest release here](https://github.com/aliparlakci/bulk-downloader-for-reddit/releases/latest)
|
## [Download the latest release here](https://github.com/aliparlakci/bulk-downloader-for-reddit/releases/latest)
|
||||||
|
|
||||||
## What it can do
|
## What it can do
|
||||||
- Can get posts from: frontpage, subreddits, multireddits, redditor's submissions, upvoted and saved posts; search results or just plain reddit links
|
|
||||||
|
- Can get posts from: frontpage, subreddits, multireddits, redditor's submissions, upvoted, downvoted and saved posts; search results or just plain reddit links
|
||||||
- Sorts posts by hot, top, new and so on
|
- Sorts posts by hot, top, new and so on
|
||||||
- Downloads **REDDIT** images and videos, **IMGUR** images and albums, **GFYCAT** links, **EROME** images and albums, **SELF POSTS** and any link to a **DIRECT IMAGE**
|
- Downloads **REDDIT** images and videos, **IMGUR** images and albums, **GFYCAT** links, **EROME** images and albums, **SELF POSTS** and any link to a **DIRECT IMAGE**
|
||||||
- Skips the existing ones
|
- Skips the existing ones
|
||||||
@@ -13,21 +15,113 @@ Downloads media from reddit posts.
|
|||||||
- Saves a reusable copy of posts' details that are found so that they can be re-downloaded again
|
- Saves a reusable copy of posts' details that are found so that they can be re-downloaded again
|
||||||
- Logs failed ones in a file to so that you can try to download them later
|
- Logs failed ones in a file to so that you can try to download them later
|
||||||
|
|
||||||
## **Compiling it from source code**
|
## Installation
|
||||||
MacOS users have to use this option. See *[here](docs/COMPILE_FROM_SOURCE.md)*
|
|
||||||
|
|
||||||
## Additional options
|
You can use it either as a `bulk-downloader-for-reddit.exe` executable file for Windows, as a Linux binary or as a *[Python script](#python-script)*. There is no MacOS executable, MacOS users must use the Python script option.
|
||||||
Script also accepts additional options via command-line arguments. Get further information from **[`--help`](docs/COMMAND_LINE_ARGUMENTS.md)**
|
|
||||||
|
### Executables
|
||||||
|
|
||||||
|
For Windows and Linux, [download the latest executables, here](https://github.com/aliparlakci/bulk-downloader-for-reddit/releases/latest).
|
||||||
|
|
||||||
|
### Python script
|
||||||
|
|
||||||
|
* Download this repository ([latest zip](https://github.com/aliparlakci/bulk-downloader-for-reddit/archive/master.zip) or `git clone git@github.com:aliparlakci/bulk-downloader-for-reddit.git`).
|
||||||
|
* Enter its folder.
|
||||||
|
* Run `python ./script.py` from the command-line (Windows, MacOSX or Linux command line; it may work with Anaconda prompt) See [here](docs/INTERPRET_FROM_SOURCE.md#finding-the-correct-keyword-for-python) if you have any trouble with this step.
|
||||||
|
|
||||||
|
It uses Python 3.6 and above. It won't work with Python 3.5 or any Python 2.x. If you have a trouble setting it up, see [here](docs/INTERPRET_FROM_SOURCE.md).
|
||||||
|
|
||||||
|
|
||||||
|
### Setting up the script
|
||||||
|
|
||||||
## Setting up the script
|
|
||||||
You need to create an imgur developer app in order API to work. Go to https://api.imgur.com/oauth2/addclient and fill the form (It does not really matter how you fill it).
|
You need to create an imgur developer app in order API to work. Go to https://api.imgur.com/oauth2/addclient and fill the form (It does not really matter how you fill it).
|
||||||
|
|
||||||
It should redirect you to a page where it shows your **imgur_client_id** and **imgur_client_secret**.
|
It should redirect you to a page where it shows your **imgur_client_id** and **imgur_client_secret**.
|
||||||
|
|
||||||
|
When you run it for the first time, it will automatically create `config.json` file containing `imgur_client_id`, `imgur_client_secret`, `reddit_username` and `reddit_refresh_token`.
|
||||||
|
|
||||||
|
|
||||||
|
## Running
|
||||||
|
|
||||||
|
You can run it it an interactive mode, or using [command-line arguments](docs/COMMAND_LINE_ARGUMENTS.md) (also available via `python ./script.py --help` or `bulk-downloader-for-reddit.exe --help`).
|
||||||
|
|
||||||
|
To run the interactive mode, simply use `python ./script.py` or double click on `bulk-downloader-for-reddit.exe` without any extra commands.
|
||||||
|
|
||||||
|
### [Example for command line arguments](docs/COMMAND_LINE_ARGUMENTS.md#examples)
|
||||||
|
|
||||||
|
### Example for an interactive script
|
||||||
|
|
||||||
|
```
|
||||||
|
(py37) bulk-downloader-for-reddit user$ python ./script.py
|
||||||
|
|
||||||
|
Bulk Downloader for Reddit v1.6.5
|
||||||
|
Written by Ali PARLAKCI – parlakciali@gmail.com
|
||||||
|
|
||||||
|
https://github.com/aliparlakci/bulk-downloader-for-reddit/
|
||||||
|
|
||||||
|
download directory: downloads/dataisbeautiful_last_few
|
||||||
|
select program mode:
|
||||||
|
|
||||||
|
[1] search
|
||||||
|
[2] subreddit
|
||||||
|
[3] multireddit
|
||||||
|
[4] submitted
|
||||||
|
[5] upvoted
|
||||||
|
[6] downvoted
|
||||||
|
[7] saved
|
||||||
|
[7] log
|
||||||
|
[0] exit
|
||||||
|
|
||||||
|
> 2
|
||||||
|
(type frontpage for all subscribed subreddits,
|
||||||
|
use plus to seperate multi subreddits: pics+funny+me_irl etc.)
|
||||||
|
|
||||||
|
subreddit: dataisbeautiful
|
||||||
|
|
||||||
|
select sort type:
|
||||||
|
|
||||||
|
[1] hot
|
||||||
|
[2] top
|
||||||
|
[3] new
|
||||||
|
[4] rising
|
||||||
|
[5] controversial
|
||||||
|
[0] exit
|
||||||
|
|
||||||
|
> 1
|
||||||
|
|
||||||
|
limit (0 for none): 50
|
||||||
|
|
||||||
|
GETTING POSTS
|
||||||
|
|
||||||
|
|
||||||
|
(1/24) – r/dataisbeautiful
|
||||||
|
AutoModerator_[Battle]_DataViz_Battle_for_the_month_of_April_2019__Visualize_the_April_Fool's_Prank_for_2019-04-01_on__r_DataIsBeautiful_b8ws37.md
|
||||||
|
Downloaded
|
||||||
|
|
||||||
|
(2/24) – r/dataisbeautiful
|
||||||
|
AutoModerator_[Topic][Open]_Open_Discussion_Monday_—_Anybody_can_post_a_general_visualization_question_or_start_a_fresh_discussion!_bg1wej.md
|
||||||
|
Downloaded
|
||||||
|
|
||||||
|
...
|
||||||
|
|
||||||
|
Total of 24 links downloaded!
|
||||||
|
|
||||||
|
Press enter to quit
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## FAQ
|
## FAQ
|
||||||
|
|
||||||
|
### I am running the script on a headless machine or on a remote server. How can I authenticate my reddit account?
|
||||||
|
- Download the script on your everday computer and run it for once.
|
||||||
|
- Authenticate the program on both reddit and imgur.
|
||||||
|
- Go to your Home folder (for Windows users it is `C:\Users\[USERNAME]\`, for Linux users it is `/home/[USERNAME]`)
|
||||||
|
- Copy the *config.json* file inside the Bulk Downloader for Reddit folder and paste it **next to** the file that you run the program.
|
||||||
|
|
||||||
### How can I change my credentials?
|
### How can I change my credentials?
|
||||||
- All of the user data is held in **config.json** file which is in a folder named "Bulk Downloader for Reddit" in your **Home** directory. You can edit
|
- All of the user data is held in **config.json** file which is in a folder named "Bulk Downloader for Reddit" in your **Home** directory. You can edit them, there.
|
||||||
them, there.
|
|
||||||
|
Also if you already have a config.json file, you can paste it **next to** the script and override the one on your Home directory.
|
||||||
|
|
||||||
### What do the dots resemble when getting posts?
|
### What do the dots resemble when getting posts?
|
||||||
- Each dot means that 100 posts are scanned.
|
- Each dot means that 100 posts are scanned.
|
||||||
@@ -50,4 +144,6 @@ It should redirect you to a page where it shows your **imgur_client_id** and **i
|
|||||||
|
|
||||||
However, they are basically text files. You can also view them with any text editor such as Notepad on Windows, gedit on Linux or Text Editor on MacOS
|
However, they are basically text files. You can also view them with any text editor such as Notepad on Windows, gedit on Linux or Text Editor on MacOS
|
||||||
|
|
||||||
## [See the changes on *master* here](docs/CHANGELOG.md)
|
## Changelog
|
||||||
|
|
||||||
|
* [See the changes on *master* here](docs/CHANGELOG.md)
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
# Changes on *master*
|
# Changes on *master*
|
||||||
|
## [23/02/2019](https://github.com/aliparlakci/bulk-downloader-for-reddit/tree/4d385fda60028343be816eb7c4f7bc613a9d555d)
|
||||||
|
- Fixed v.redd.it links
|
||||||
|
|
||||||
## [27/01/2019](https://github.com/aliparlakci/bulk-downloader-for-reddit/tree/b7baf07fb5998368d87e3c4c36aed40daf820609)
|
## [27/01/2019](https://github.com/aliparlakci/bulk-downloader-for-reddit/tree/b7baf07fb5998368d87e3c4c36aed40daf820609)
|
||||||
- Clarified the instructions
|
- Clarified the instructions
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
# Using command-line arguments
|
# Using command-line arguments
|
||||||
|
|
||||||
See **[compiling from source](COMPILE_FROM_SOURCE.md)** page first unless you are using an executable file. If you are using an executable file, see [using terminal](COMPILE_FROM_SOURCE.md#using-terminal) and come back.
|
See **[compiling from source](INTERPRET_FROM_SOURCE.md)** page first unless you are using an executable file. If you are using an executable file, see [using terminal](INTERPRET_FROM_SOURCE.md#using-terminal) and come back.
|
||||||
|
|
||||||
***Use*** `.\bulk-downloader-for-reddit.exe` ***or*** `./bulk-downloader-for-reddit` ***if you are using the executable***.
|
***Use*** `.\bulk-downloader-for-reddit.exe` ***or*** `./bulk-downloader-for-reddit` ***if you are using the executable***.
|
||||||
```console
|
```console
|
||||||
$ python script.py --help
|
$ python script.py --help
|
||||||
usage: script.py [-h] [--directory DIRECTORY] [--NoDownload] [--verbose]
|
usage: script.py [-h] [--directory DIRECTORY] [--NoDownload] [--verbose] [--quit]
|
||||||
[--quit] [--link link] [--saved] [--submitted] [--upvoted]
|
[--link link] [--saved] [--submitted] [--upvoted] [--downvoted]
|
||||||
[--log LOG FILE] [--subreddit SUBREDDIT [SUBREDDIT ...]]
|
[--log LOG FILE] [--subreddit SUBREDDIT [SUBREDDIT ...]]
|
||||||
[--multireddit MULTIREDDIT] [--user redditor]
|
[--multireddit MULTIREDDIT] [--user redditor]
|
||||||
[--search query] [--sort SORT TYPE] [--limit Limit]
|
[--search query] [--sort SORT TYPE] [--limit Limit]
|
||||||
@@ -27,6 +27,7 @@ optional arguments:
|
|||||||
--saved Triggers saved mode
|
--saved Triggers saved mode
|
||||||
--submitted Gets posts of --user
|
--submitted Gets posts of --user
|
||||||
--upvoted Gets upvoted posts of --user
|
--upvoted Gets upvoted posts of --user
|
||||||
|
--downvoted Gets downvoted posts of --user
|
||||||
--log LOG FILE Takes a log file which created by itself (json files),
|
--log LOG FILE Takes a log file which created by itself (json files),
|
||||||
reads posts and tries downloading them again.
|
reads posts and tries downloading them again.
|
||||||
--subreddit SUBREDDIT [SUBREDDIT ...]
|
--subreddit SUBREDDIT [SUBREDDIT ...]
|
||||||
@@ -98,4 +99,4 @@ python script.py --directory C:\\NEW_FOLDER\\ANOTHER_FOLDER --log UNNAMED_FOLDER
|
|||||||
|
|
||||||
# FAQ
|
# FAQ
|
||||||
## I can't startup the script no matter what.
|
## I can't startup the script no matter what.
|
||||||
See **[finding the correct keyword for Python](COMPILE_FROM_SOURCE.md#finding-the-correct-keyword-for-python)**
|
See **[finding the correct keyword for Python](INTERPRET_FROM_SOURCE.md#finding-the-correct-keyword-for-python)**
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# Compiling from source code
|
# Interpret from source code
|
||||||
## Requirements
|
## Requirements
|
||||||
### Python 3 Interpreter
|
### Python 3 Interpreter
|
||||||
- This program is designed to work best on **Python 3.6.5** and this version of Python 3 is suggested. See if it is already installed, [here](#finding-the-correct-keyword-for-python).
|
- This program is designed to work best on **Python 3.6.5** and this version of Python 3 is suggested. See if it is already installed, [here](#finding-the-correct-keyword-for-python).
|
||||||
@@ -6,11 +6,11 @@
|
|||||||
|
|
||||||
## Using terminal
|
## Using terminal
|
||||||
### To open it...
|
### To open it...
|
||||||
- **On Windows**: Press **Shift+Right Click**, select **Open Powershell window here** or **Open Command Prompt window here**
|
- **on Windows**: Press **Shift+Right Click**, select **Open Powershell window here** or **Open Command Prompt window here**
|
||||||
|
|
||||||
- **On Linux**: Right-click in a folder and select **Open Terminal** or press **Ctrl+Alt+T**.
|
- **on Linux**: Right-click in a folder and select **Open Terminal** or press **Ctrl+Alt+T**.
|
||||||
|
|
||||||
- **On MacOS**: Look for an app called **Terminal**.
|
- **on MacOS**: Look for an app called **Terminal**.
|
||||||
|
|
||||||
### Navigating to the directory where script is downloaded
|
### Navigating to the directory where script is downloaded
|
||||||
Go inside the folder where script.py is located. If you are not familiar with changing directories on command-prompt and terminal read *Changing Directories* in [this article](https://lifehacker.com/5633909/who-needs-a-mouse-learn-to-use-the-command-line-for-almost-anything)
|
Go inside the folder where script.py is located. If you are not familiar with changing directories on command-prompt and terminal read *Changing Directories* in [this article](https://lifehacker.com/5633909/who-needs-a-mouse-learn-to-use-the-command-line-for-almost-anything)
|
||||||
37
script.py
37
script.py
@@ -23,7 +23,7 @@ from src.tools import (GLOBAL, createLogFile, jsonFile, nameCorrector,
|
|||||||
|
|
||||||
__author__ = "Ali Parlakci"
|
__author__ = "Ali Parlakci"
|
||||||
__license__ = "GPL"
|
__license__ = "GPL"
|
||||||
__version__ = "1.6.4.1"
|
__version__ = "1.6.5"
|
||||||
__maintainer__ = "Ali Parlakci"
|
__maintainer__ = "Ali Parlakci"
|
||||||
__email__ = "parlakciali@gmail.com"
|
__email__ = "parlakciali@gmail.com"
|
||||||
|
|
||||||
@@ -114,6 +114,10 @@ def parseArguments(arguments=[]):
|
|||||||
action="store_true",
|
action="store_true",
|
||||||
help="Gets upvoted posts of --user")
|
help="Gets upvoted posts of --user")
|
||||||
|
|
||||||
|
parser.add_argument("--downvoted",
|
||||||
|
action="store_true",
|
||||||
|
help="Gets downvoted posts of --user")
|
||||||
|
|
||||||
parser.add_argument("--log",
|
parser.add_argument("--log",
|
||||||
help="Takes a log file which created by itself " \
|
help="Takes a log file which created by itself " \
|
||||||
"(json files), reads posts and tries downloadin" \
|
"(json files), reads posts and tries downloadin" \
|
||||||
@@ -187,7 +191,7 @@ def checkConflicts():
|
|||||||
search = 1 if GLOBAL.arguments.search else 0
|
search = 1 if GLOBAL.arguments.search else 0
|
||||||
|
|
||||||
modes = [
|
modes = [
|
||||||
"saved","subreddit","submitted","log","link","upvoted","multireddit"
|
"saved","subreddit","submitted","log","link","upvoted","downvoted","multireddit"
|
||||||
]
|
]
|
||||||
|
|
||||||
values = {
|
values = {
|
||||||
@@ -209,12 +213,19 @@ def checkConflicts():
|
|||||||
if search+values["upvoted"] == 2:
|
if search+values["upvoted"] == 2:
|
||||||
raise SearchModeError("You cannot search in upvoted posts")
|
raise SearchModeError("You cannot search in upvoted posts")
|
||||||
|
|
||||||
|
if search+values["downvoted"] == 2:
|
||||||
|
raise SearchModeError("You cannot search in downvoted posts")
|
||||||
|
|
||||||
if search+values["log"] == 2:
|
if search+values["log"] == 2:
|
||||||
raise SearchModeError("You cannot search in log files")
|
raise SearchModeError("You cannot search in log files")
|
||||||
|
|
||||||
if values["upvoted"]+values["submitted"] == 1 and user == 0:
|
if values["upvoted"]+values["submitted"] == 1 and user == 0:
|
||||||
raise RedditorNameError("No redditor name given")
|
raise RedditorNameError("No redditor name given")
|
||||||
|
|
||||||
|
if values["downvoted"]+values["submitted"] == 1 and user == 0:
|
||||||
|
raise RedditorNameError("No redditor name given")
|
||||||
|
|
||||||
|
|
||||||
class PromptUser:
|
class PromptUser:
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def chooseFrom(choices):
|
def chooseFrom(choices):
|
||||||
@@ -241,7 +252,7 @@ class PromptUser:
|
|||||||
print("select program mode:")
|
print("select program mode:")
|
||||||
programModes = [
|
programModes = [
|
||||||
"search","subreddit","multireddit",
|
"search","subreddit","multireddit",
|
||||||
"submitted","upvoted","saved","log"
|
"submitted","upvoted","downvoted","saved","log"
|
||||||
]
|
]
|
||||||
programMode = self.chooseFrom(programModes)
|
programMode = self.chooseFrom(programModes)
|
||||||
|
|
||||||
@@ -346,6 +357,10 @@ class PromptUser:
|
|||||||
GLOBAL.arguments.upvoted = True
|
GLOBAL.arguments.upvoted = True
|
||||||
GLOBAL.arguments.user = input("\nredditor: ")
|
GLOBAL.arguments.user = input("\nredditor: ")
|
||||||
|
|
||||||
|
elif programMode == "downvoted":
|
||||||
|
GLOBAL.arguments.downvoted = True
|
||||||
|
GLOBAL.arguments.user = input("\nredditor: ")
|
||||||
|
|
||||||
elif programMode == "saved":
|
elif programMode == "saved":
|
||||||
GLOBAL.arguments.saved = True
|
GLOBAL.arguments.saved = True
|
||||||
|
|
||||||
@@ -419,6 +434,9 @@ def prepareAttributes():
|
|||||||
elif GLOBAL.arguments.upvoted is True:
|
elif GLOBAL.arguments.upvoted is True:
|
||||||
ATTRIBUTES["upvoted"] = True
|
ATTRIBUTES["upvoted"] = True
|
||||||
|
|
||||||
|
elif GLOBAL.arguments.downvoted is True:
|
||||||
|
ATTRIBUTES["downvoted"] = True
|
||||||
|
|
||||||
elif GLOBAL.arguments.submitted is not None:
|
elif GLOBAL.arguments.submitted is not None:
|
||||||
ATTRIBUTES["submitted"] = True
|
ATTRIBUTES["submitted"] = True
|
||||||
|
|
||||||
@@ -672,10 +690,15 @@ def main():
|
|||||||
except ProgramModeError as err:
|
except ProgramModeError as err:
|
||||||
PromptUser()
|
PromptUser()
|
||||||
|
|
||||||
if not Path(GLOBAL.configDirectory).is_dir():
|
if not Path(GLOBAL.defaultConfigDirectory).is_dir():
|
||||||
os.makedirs(GLOBAL.configDirectory)
|
os.makedirs(GLOBAL.defaultConfigDirectory)
|
||||||
GLOBAL.config = getConfig("config.json") if Path("config.json").exists() \
|
|
||||||
else getConfig(GLOBAL.configDirectory / "config.json")
|
if Path("config.json").exists():
|
||||||
|
GLOBAL.configDirectory = Path("config.json")
|
||||||
|
else:
|
||||||
|
GLOBAL.configDirectory = GLOBAL.defaultConfigDirectory / "config.json"
|
||||||
|
|
||||||
|
GLOBAL.config = getConfig(GLOBAL.configDirectory)
|
||||||
|
|
||||||
if GLOBAL.arguments.log is not None:
|
if GLOBAL.arguments.log is not None:
|
||||||
logDir = Path(GLOBAL.arguments.log)
|
logDir = Path(GLOBAL.arguments.log)
|
||||||
|
|||||||
@@ -117,7 +117,9 @@ class Erome:
|
|||||||
post["postSubmitter"]+"_"+title+"_"+post['postId']+".tmp"
|
post["postSubmitter"]+"_"+title+"_"+post['postId']+".tmp"
|
||||||
)
|
)
|
||||||
|
|
||||||
imageURL = "https:" + IMAGES[0]
|
imageURL = IMAGES[0]
|
||||||
|
if 'https://' not in imageURL and 'http://' not in imageURL:
|
||||||
|
imageURL = "https://" + imageURL
|
||||||
|
|
||||||
try:
|
try:
|
||||||
getFile(fileDir,tempDir,imageURL)
|
getFile(fileDir,tempDir,imageURL)
|
||||||
@@ -146,7 +148,9 @@ class Erome:
|
|||||||
extension = getExtension(IMAGES[i])
|
extension = getExtension(IMAGES[i])
|
||||||
|
|
||||||
fileName = str(i+1)
|
fileName = str(i+1)
|
||||||
imageURL = "https:" + IMAGES[i]
|
imageURL = IMAGES[i]
|
||||||
|
if 'https://' not in imageURL and 'http://' not in imageURL:
|
||||||
|
imageURL = "https://" + imageURL
|
||||||
|
|
||||||
fileDir = folderDir / (fileName + extension)
|
fileDir = folderDir / (fileName + extension)
|
||||||
tempDir = folderDir / (fileName + ".tmp")
|
tempDir = folderDir / (fileName + ".tmp")
|
||||||
|
|||||||
@@ -92,7 +92,7 @@ def LinkParser(LINK):
|
|||||||
if index == 0:
|
if index == 0:
|
||||||
RESULT["subreddit"] = "frontpage"
|
RESULT["subreddit"] = "frontpage"
|
||||||
|
|
||||||
elif SplittedLink[index] in ["submitted","saved","posts","upvoted"]:
|
elif SplittedLink[index] in ["submitted","saved","posts","upvoted","downvoted"]:
|
||||||
if SplittedLink[index] == "submitted" or \
|
if SplittedLink[index] == "submitted" or \
|
||||||
SplittedLink[index] == "posts":
|
SplittedLink[index] == "posts":
|
||||||
RESULT["submitted"] = {}
|
RESULT["submitted"] = {}
|
||||||
@@ -103,6 +103,9 @@ def LinkParser(LINK):
|
|||||||
elif SplittedLink[index] == "upvoted":
|
elif SplittedLink[index] == "upvoted":
|
||||||
RESULT["upvoted"] = True
|
RESULT["upvoted"] = True
|
||||||
|
|
||||||
|
elif SplittedLink[index] == "downvoted":
|
||||||
|
RESULT["downvoted"] = True
|
||||||
|
|
||||||
elif "?" in SplittedLink[index]:
|
elif "?" in SplittedLink[index]:
|
||||||
ParsedQuery = QueryParser(SplittedLink[index],index)
|
ParsedQuery = QueryParser(SplittedLink[index],index)
|
||||||
if ParsedQuery["HEADER"] == "search":
|
if ParsedQuery["HEADER"] == "search":
|
||||||
@@ -119,6 +122,7 @@ def LinkParser(LINK):
|
|||||||
RESULT["queries"] = ParsedQuery
|
RESULT["queries"] = ParsedQuery
|
||||||
|
|
||||||
if not ("upvoted" in RESULT or \
|
if not ("upvoted" in RESULT or \
|
||||||
|
"downvoted" in RESULT or \
|
||||||
"saved" in RESULT or \
|
"saved" in RESULT or \
|
||||||
"submitted" in RESULT or \
|
"submitted" in RESULT or \
|
||||||
"multireddit" in RESULT) and \
|
"multireddit" in RESULT) and \
|
||||||
@@ -222,6 +226,9 @@ def LinkDesigner(LINK):
|
|||||||
elif "upvoted" in attributes:
|
elif "upvoted" in attributes:
|
||||||
MODE["upvoted"] = True
|
MODE["upvoted"] = True
|
||||||
|
|
||||||
|
elif "downvoted" in attributes:
|
||||||
|
MODE["downvoted"] = True
|
||||||
|
|
||||||
elif "multireddit" in attributes:
|
elif "multireddit" in attributes:
|
||||||
MODE["multireddit"] = attributes["multireddit"]
|
MODE["multireddit"] = attributes["multireddit"]
|
||||||
|
|
||||||
|
|||||||
@@ -3,6 +3,8 @@ import sys
|
|||||||
import random
|
import random
|
||||||
import socket
|
import socket
|
||||||
import webbrowser
|
import webbrowser
|
||||||
|
import urllib.request
|
||||||
|
from urllib.error import HTTPError
|
||||||
|
|
||||||
import praw
|
import praw
|
||||||
from prawcore.exceptions import NotFound, ResponseException, Forbidden
|
from prawcore.exceptions import NotFound, ResponseException, Forbidden
|
||||||
@@ -93,7 +95,7 @@ def beginPraw(config,user_agent = str(socket.gethostname())):
|
|||||||
authorizedInstance = GetAuth(reddit,port).getRefreshToken(*scopes)
|
authorizedInstance = GetAuth(reddit,port).getRefreshToken(*scopes)
|
||||||
reddit = authorizedInstance[0]
|
reddit = authorizedInstance[0]
|
||||||
refresh_token = authorizedInstance[1]
|
refresh_token = authorizedInstance[1]
|
||||||
jsonFile(GLOBAL.configDirectory / "config.json").add({
|
jsonFile(GLOBAL.configDirectory).add({
|
||||||
"reddit_username":str(reddit.user.me()),
|
"reddit_username":str(reddit.user.me()),
|
||||||
"reddit_refresh_token":refresh_token
|
"reddit_refresh_token":refresh_token
|
||||||
})
|
})
|
||||||
@@ -103,7 +105,7 @@ def beginPraw(config,user_agent = str(socket.gethostname())):
|
|||||||
authorizedInstance = GetAuth(reddit,port).getRefreshToken(*scopes)
|
authorizedInstance = GetAuth(reddit,port).getRefreshToken(*scopes)
|
||||||
reddit = authorizedInstance[0]
|
reddit = authorizedInstance[0]
|
||||||
refresh_token = authorizedInstance[1]
|
refresh_token = authorizedInstance[1]
|
||||||
jsonFile(GLOBAL.configDirectory / "config.json").add({
|
jsonFile(GLOBAL.configDirectory).add({
|
||||||
"reddit_username":str(reddit.user.me()),
|
"reddit_username":str(reddit.user.me()),
|
||||||
"reddit_refresh_token":refresh_token
|
"reddit_refresh_token":refresh_token
|
||||||
})
|
})
|
||||||
@@ -278,6 +280,20 @@ def getPosts(args):
|
|||||||
except Forbidden:
|
except Forbidden:
|
||||||
raise InsufficientPermission("You do not have permission to do that")
|
raise InsufficientPermission("You do not have permission to do that")
|
||||||
|
|
||||||
|
elif "downvoted" in args:
|
||||||
|
print (
|
||||||
|
"downvoted posts of {user}\nlimit: {limit}\n".format(
|
||||||
|
user=args["user"],
|
||||||
|
limit=args["limit"]
|
||||||
|
).upper(),noPrint=True
|
||||||
|
)
|
||||||
|
try:
|
||||||
|
return redditSearcher(
|
||||||
|
reddit.redditor(args["user"]).downvoted(limit=args["limit"])
|
||||||
|
)
|
||||||
|
except Forbidden:
|
||||||
|
raise InsufficientPermission("You do not have permission to do that")
|
||||||
|
|
||||||
elif "post" in args:
|
elif "post" in args:
|
||||||
print("post: {post}\n".format(post=args["post"]).upper(),noPrint=True)
|
print("post: {post}\n".format(post=args["post"]).upper(),noPrint=True)
|
||||||
return redditSearcher(
|
return redditSearcher(
|
||||||
@@ -422,18 +438,20 @@ def checkIfMatching(submission):
|
|||||||
eromeCount += 1
|
eromeCount += 1
|
||||||
return details
|
return details
|
||||||
|
|
||||||
elif isDirectLink(submission.url) is not False:
|
|
||||||
details['postType'] = 'direct'
|
|
||||||
details['postURL'] = isDirectLink(submission.url)
|
|
||||||
directCount += 1
|
|
||||||
return details
|
|
||||||
|
|
||||||
elif submission.is_self:
|
elif submission.is_self:
|
||||||
details['postType'] = 'self'
|
details['postType'] = 'self'
|
||||||
details['postContent'] = submission.selftext
|
details['postContent'] = submission.selftext
|
||||||
selfCount += 1
|
selfCount += 1
|
||||||
return details
|
return details
|
||||||
|
|
||||||
|
directLink = isDirectLink(submission.url)
|
||||||
|
|
||||||
|
if directLink is not False:
|
||||||
|
details['postType'] = 'direct'
|
||||||
|
details['postURL'] = directLink
|
||||||
|
directCount += 1
|
||||||
|
return details
|
||||||
|
|
||||||
def printSubmission(SUB,validNumber,totalNumber):
|
def printSubmission(SUB,validNumber,totalNumber):
|
||||||
"""Print post's link, title and media link to screen"""
|
"""Print post's link, title and media link to screen"""
|
||||||
|
|
||||||
@@ -473,7 +491,22 @@ def isDirectLink(URL):
|
|||||||
return URL
|
return URL
|
||||||
|
|
||||||
elif "v.redd.it" in URL:
|
elif "v.redd.it" in URL:
|
||||||
return URL+"/DASH_600_K"
|
bitrates = ["DASH_1080","DASH_720","DASH_600", \
|
||||||
|
"DASH_480","DASH_360","DASH_240"]
|
||||||
|
|
||||||
|
for bitrate in bitrates:
|
||||||
|
videoURL = URL+"/"+bitrate
|
||||||
|
|
||||||
|
try:
|
||||||
|
responseCode = urllib.request.urlopen(videoURL).getcode()
|
||||||
|
except urllib.error.HTTPError:
|
||||||
|
responseCode = 0
|
||||||
|
|
||||||
|
if responseCode == 200:
|
||||||
|
return videoURL
|
||||||
|
|
||||||
|
else:
|
||||||
|
return False
|
||||||
|
|
||||||
for extension in imageTypes:
|
for extension in imageTypes:
|
||||||
if extension in URL:
|
if extension in URL:
|
||||||
|
|||||||
@@ -14,7 +14,8 @@ class GLOBAL:
|
|||||||
config = None
|
config = None
|
||||||
arguments = None
|
arguments = None
|
||||||
directory = None
|
directory = None
|
||||||
configDirectory = Path.home() / "Bulk Downloader for Reddit"
|
defaultConfigDirectory = Path.home() / "Bulk Downloader for Reddit"
|
||||||
|
configDirectory = ""
|
||||||
reddit_client_id = "BSyphDdxYZAgVQ"
|
reddit_client_id = "BSyphDdxYZAgVQ"
|
||||||
reddit_client_secret = "bfqNJaRh8NMh-9eAr-t4TRz-Blk"
|
reddit_client_secret = "bfqNJaRh8NMh-9eAr-t4TRz-Blk"
|
||||||
printVanilla = print
|
printVanilla = print
|
||||||
|
|||||||
Reference in New Issue
Block a user