Skip to content

Commit

Permalink
v1.8.0 (#105)
Browse files Browse the repository at this point in the history
## Change log
  
- Youtube support added
- Custom filenames feature added
- Custom folder structure feature added
- Unsaving downloaded posts option added
- Remove duplicate posts on different subreddits option added
- Skipping given domains option added
- Keeping track of already downloaded posts on a separate file option added (See --dowloaded-posts in README)
- No audio on v.redd.it videos bug fixed (see README for details about ffmpeg)
- --default-directory option is added
- --default-options is added
- --use-local-config option is added
- Bug fixes
  • Loading branch information
aliparlakci authored Jun 1, 2020
1 parent 0e007ab commit fd4958c
Show file tree
Hide file tree
Showing 26 changed files with 1,806 additions and 1,713 deletions.
346 changes: 198 additions & 148 deletions README.md

Large diffs are not rendered by default.

86 changes: 0 additions & 86 deletions docs/CHANGELOG.md

This file was deleted.

101 changes: 0 additions & 101 deletions docs/COMMAND_LINE_ARGUMENTS.md

This file was deleted.

43 changes: 19 additions & 24 deletions docs/INTERPRET_FROM_SOURCE.md
Original file line number Diff line number Diff line change
@@ -1,40 +1,35 @@
# Interpret from source code
## Requirements
### 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).
- If not, download the matching release for your platform [here](https://www.python.org/downloads/) and install it. If you are a *Windows* user, selecting **Add Python 3 to PATH** option when installing the software is mandatory.
### 🐍 Python 3 Interpreter
- Python 3 is required. See if it is already installed, [here](#finding-the-correct-keyword-for-python).
- If not, download the matching release for your platform [here](https://www.python.org/downloads/) and install it. If you are a *Windows* user, selecting **Add Python 3 to PATH** option when installing the software is **mandatory**.

## Using terminal
### To open it...
- **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 MacOS**: Look for an app called **Terminal**.

### 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)
### πŸ“ƒ Source Code
[Download the repository](https://github.com/aliparlakci/bulk-downloader-for-reddit/archive/master.zip) and extract the zip into a folder.

## πŸ’» Using the command line
Open the [Command Promt](https://youtu.be/bgSSJQolR0E?t=18), [Powershell](https://youtu.be/bgSSJQolR0E?t=18) or [Terminal](https://youtu.be/Pz4yHAB3G8w?t=31) in the folder that contains the script.py file (click on the links to see how)

## Finding the correct keyword for Python
Enter these lines to terminal window until it prints out the version you have downloaded and installed:
### Finding the correct keyword for Python
Enter these lines to the terminal window until it prints out the a version starting with **`3.`**:

- `python --version`
- `python3 --version`
- `python3.7 --version`
- `python3.6 --version`
- `py --version`
- `py -3 --version`
- `py -3.6 --version`
- `py -3.7 --version`

Once it does, your keyword is without the `--version` part.

## Installing dependencies
Enter the line below to terminal window when you are in the directory where script.py is, use your keyword for Python:
## πŸ“¦ Installing dependencies
Enter the line below to terminal window when you are in the directory where script.py is, use your keyword instead of `python`:
```console
python -m pip install -r requirements.txt
```

## πŸƒβ€β™‚οΈ Running the code
Type below code into command line inside the program folder, use your keyword instead of `python`:
```console
python script.py
```

---

Now, you can go to [Using command-line arguments](COMMAND_LINE_ARGUMENTS.md)
The program should guide you through. **However**, you can also use custom options. See [Options](../README.md#βš™-Options)
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
bs4
requests
praw
imgurpython
imgurpython
youtube-dl
Loading

0 comments on commit fd4958c

Please sign in to comment.