1
0
Fork
You've already forked ost
0
  • Python 99.8%
  • Makefile 0.2%
Find a file
2024年06月07日 11:07:19 +03:00
src name 2024年06月07日 11:07:19 +03:00
tests add to_json capability to the response 2023年11月18日 23:21:58 +02:00
.gitignore lint 2023年09月21日 19:14:50 +03:00
.pre-commit-config.yaml add classifiers 2023年09月21日 23:03:40 +03:00
bandit.yaml lint 2023年09月21日 19:14:50 +03:00
LICENSE init 2023年09月20日 22:02:19 +03:00
makefile Use pyproject.toml fully 2023年12月09日 16:24:37 +02:00
pyproject.toml bump version 2023年12月20日 14:32:10 +02:00
README.md fix README 2023年12月26日 10:45:25 +02:00

Python OpenSubtitles.com API Wrapper

GitHub PyPI Python

A Python wrapper for the OpenSubtitles REST API, providing easy access to subtitle data. This library allows you to interact with OpenSubtitles.com programmatically, making it simple to search for and download subtitles for your favorite movies and TV shows.

Installation

You can install the package using pip directly from PyPI or by cloning the repository from GitHub.

Install from PyPI:

pip install opensubtitlescom

Install from GitHub (latest development version):

pip install git+ssh://git@github.com/dusking/opensubtitles-com.git --upgrade

Usage

Using this wrapper is straightforward. It follows the OpenSubtitles API documentation closely and converts responses into Python objects. Here's an example of how to use it:

from opensubtitlescom import OpenSubtitles
# Initialize the OpenSubtitles client
subtitles = OpenSubtitles("MyApp v1.0.0", MY_API_KEY)
# Log in (retrieve auth token)
subtitles.login(MY_USERNAME, MY_PASSWORD)
# Search for subtitles
response = subtitles.search(query="breaking bad", season_number=1, episode_number=1, languages="en")
# Convert the response to a Python dictionary
response_dict = response.to_dict()
print(response_dict)
# Convert the response to a Json format
response_json = response.to_json()
print(response_json)
# Get first response subtitles
srt = subtitles.download_and_parse(response.data[0])

Here's another simple example:

# Get latest uploaded subtitles
latest_uploads = subtitles.discover_latest()
# Convert the response to a Python dictionary
latest_uploads_dict = latest_uploads.to_dict()

For more information on available methods and options, refer to the OpenSubtitles API documentation.

Using the CLI

The library is accessible through the CLI, offering various options. To view all available commands, use the following:

$> ost -h
positional arguments:
 {set-cred,show-cred,search,download}
 set-cred Set the username and password in the config file.
 show-cred Show the username and password in the config file.
 search Search for subtitles by various criteria.
 download Download a subtitle by file-id or movie-hash.
optional arguments:
 -h, --help show this help message and exit
 --config CONFIG Path to the configuration file
 -v, --verbose Increase verbosity level

Before executing CLI commands, set your opensubtitles user credentials using the set-cred command:

$> ost set-cred
Enter your username (leave blank to keep existing):
Enter your password (leave blank to keep existing):
Credentials set successfully

Credentials are stored in the configuration file. Now you can use CLI commands. For instance, to search for subtitles:

$> ost search --query "The Matrix"
+----+---------------------------+----------+---------+------------------------------------------------------------------------+
| # | title | imdb-id | file-id | file-name |
+----+---------------------------+----------+---------+------------------------------------------------------------------------+
| 1 | The Matrix | 133093 | 4461104 | The.Matrix.1999.720p.HDDVD.DTS.x264-ESiR.ENG |
| 2 | The Matrix | 133093 | 4477776 | The.Matrix.1999.Subtitles.YIFY |
| 3 | The Matrix | 133093 | 4465191 | The.Matrix.1999.BluRay.1080p.x264.DTS-WiKi.ENG |
| 4 | The Matrix | 133093 | 4483524 | The.Matrix.1999.1080p.BrRip.x264.YIFY.en |
| 5 | The Matrix | 133093 | 4480638 | The.Matrix.1999.1080p.BluRay.x264-CtrlHD.eng-sdh |

To download subtitles, use the download command with the specified file-id:

$> ost download --file-id 4461104

You can easily download subtitles for a local file using the CLI. The command will automatically search for the hash and download the first result. For example:

$> ost download --file mymovie.mp4

This command will download the subtitle for "mymovie.mp4" and save it as "mymovie.srt".

Running Tests

To execute the unit tests, use the following command:

$ python -m unittest

Make sure you have the necessary dependencies installed and a valid Python environment set up before running the tests.

Contributing

Contributions to this project are welcome. If you'd like to contribute, please follow these guidelines:

  1. Open an issue to discuss your proposed changes before submitting a pull request.
  2. Ensure that your code adheres to the project's coding standards.
  3. Write tests for your code and make sure existing tests pass.
  4. Document your changes thoroughly, including updating this README if necessary.

Thank you for your interest in improving this project!