1
0
Fork 0
mirror of synced 2024-05-22 21:22:36 +12:00
bulk-downloader-for-reddit/docs/INTERPRET_FROM_SOURCE.md
Ali Parlakçı fd4958c06a
v1.8.0 (#105)
## 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
2020-06-01 15:05:02 +03:00

1.6 KiB

Interpret from source code

Requirements

🐍 Python 3 Interpreter

  • Python 3 is required. See if it is already installed, here.
  • If not, download the matching release for your platform here and install it. If you are a Windows user, selecting Add Python 3 to PATH option when installing the software is mandatory.

📃 Source Code

Download the repository and extract the zip into a folder.

💻 Using the command line

Open the Command Promt, Powershell or Terminal 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 the terminal window until it prints out the a version starting with 3.:

  • python --version
  • python3 --version
  • py --version
  • py -3 --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 instead of python:

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:

python script.py

The program should guide you through. However, you can also use custom options. See Options