A Python package for scraping and downloading subtitles from iTunes movie pages.
Latest version: 2.3.2 (changelog)
- Python 3.7+
python3 -m pip install isubrip
python3 -m pip install -e git+https://github.com/MichaelYochpaz/iSubRip.git#egg=isubrip
isubrip <iTunes movie URL> [iTunes movie URL...]
It's possible to configure different options and enable / disable different features using a TOML config file.
A config file will be looked for in one of the following paths according to OS:
Windows: %USERPROFILE%\.isubrip\config.json
Linux / macOS: $HOME/.isubrip/config.toml
Windows: C:\Users\Michael\.isubrip\config.toml
Linux: /home/Michael/.isubrip/config.toml
macOS: /Users/Michael/.isubrip/config.toml
[downloads]
folder = "C:\\iTunes-Subtitles"
format = "srt"
languages = ["en-US"]
zip = false
[subtitles]
fix-rtl = true
A complete config with all the available options and explanations for each configuration can be found here
- All settings are optional. Not specifying a setting will result in using the default value.