Skip to main content

OpenSubtitles.com new REST API

Project description

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(MY_API_KEY, "MyApp v1.0.0")

# 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!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

opensubtitlescom-0.1.4.tar.gz (28.3 kB view hashes)

Uploaded Source

Built Distribution

opensubtitlescom-0.1.4-py3-none-any.whl (30.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page