Skip to main content

Python Client SDK Generated by Speakeasy

Project description

plexpy

SDK Installation

pip install plex-api-client

SDK Example Usage

Example

import plex_api

s = plex_api.PlexAPI(
    access_token="<YOUR_API_KEY_HERE>",
    x_plex_client_identifier='<value>',
)


res = s.server.get_server_capabilities()

if res.object is not None:
    # handle response
    pass

Available Resources and Operations

server

media

video

activities

butler

hubs

search

library

log

plex

playlists

authentication

statistics

sessions

updater

Error Handling

Handling errors in this SDK should largely match your expectations. All operations return a response object or raise an error. If Error objects are specified in your OpenAPI Spec, the SDK will raise the appropriate Error type.

Error Object Status Code Content Type
errors.GetServerCapabilitiesResponseBody 401 application/json
errors.SDKError 4xx-5xx /

Example

import plex_api
from plex_api.models import errors

s = plex_api.PlexAPI(
    access_token="<YOUR_API_KEY_HERE>",
    x_plex_client_identifier='<value>',
)


res = None
try:
    res = s.server.get_server_capabilities()
except errors.GetServerCapabilitiesResponseBody as e:
    # handle exception
    raise(e)
except errors.SDKError as e:
    # handle exception
    raise(e)

if res.object is not None:
    # handle response
    pass

Server Selection

Select Server by Index

You can override the default server globally by passing a server index to the server_idx: int optional parameter when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the indexes associated with the available servers:

# Server Variables
0 {protocol}://{ip}:{port} protocol (default is http), ip (default is 10.10.10.47), port (default is 32400)

Example

import plex_api

s = plex_api.PlexAPI(
    server_idx=0,
    access_token="<YOUR_API_KEY_HERE>",
    x_plex_client_identifier='<value>',
)


res = s.server.get_server_capabilities()

if res.object is not None:
    # handle response
    pass

Variables

Some of the server options above contain variables. If you want to set the values of those variables, the following optional parameters are available when initializing the SDK client instance:

  • protocol: models.ServerProtocol
  • ip: str
  • port: str

Override Server URL Per-Client

The default server can also be overridden globally by passing a URL to the server_url: str optional parameter when initializing the SDK client instance. For example:

import plex_api

s = plex_api.PlexAPI(
    server_url="{protocol}://{ip}:{port}",
    access_token="<YOUR_API_KEY_HERE>",
    x_plex_client_identifier='<value>',
)


res = s.server.get_server_capabilities()

if res.object is not None:
    # handle response
    pass

Override Server URL Per-Operation

The server URL can also be overridden on a per-operation basis, provided a server list was specified for the operation. For example:

import plex_api

s = plex_api.PlexAPI(
    x_plex_client_identifier='<value>',
)


res = s.plex.get_pin(server_url="https://plex.tv/api/v2", strong=False, x_plex_client_identifier='<value>')

if res.object is not None:
    # handle response
    pass

Custom HTTP Client

The Python SDK makes API calls using the requests HTTP library. In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with a custom requests.Session object.

For example, you could specify a header for every request that this sdk makes as follows:

import plex_api
import requests

http_client = requests.Session()
http_client.headers.update({'x-custom-header': 'someValue'})
s = plex_api.PlexAPI(client=http_client)

Authentication

Per-Client Security Schemes

This SDK supports the following security scheme globally:

Name Type Scheme
access_token apiKey API key

To authenticate with the API the access_token parameter must be set when initializing the SDK client instance. For example:

import plex_api

s = plex_api.PlexAPI(
    access_token="<YOUR_API_KEY_HERE>",
    x_plex_client_identifier='<value>',
)


res = s.server.get_server_capabilities()

if res.object is not None:
    # handle response
    pass

Global Parameters

A parameter is configured globally. This parameter must be set on the SDK client instance itself during initialization. When configured as an option during SDK initialization, This global value will be used as the default on the operations that use it. When such operations are called, there is a place in each to override the global value, if needed.

For example, you can set X-Plex-Client-Identifier to '<value>' at SDK initialization and then you do not have to pass the same value on calls to operations like get_pin. But if you want to do so you may, which will locally override the global setting. See the example code below for a demonstration.

Available Globals

The following global parameter is available. The required parameter must be set when you initialize the SDK client.

Name Type Required Description
x_plex_client_identifier str ✔️ The unique identifier for the client application
This is used to track the client application and its usage
(UUID, serial number, or other number unique per device)

|

Example

import plex_api

s = plex_api.PlexAPI(
    x_plex_client_identifier='<value>',
)


res = s.plex.get_pin(strong=False, x_plex_client_identifier='<value>')

if res.object is not None:
    # handle response
    pass

Development

Maturity

This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally looking for the latest version.

Contributions

While we value open-source contributions to this SDK, this library is generated programmatically. Feel free to open a PR or a Github issue as a proof of concept and we'll do our best to include it in a future release!

SDK Created by Speakeasy

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

plex-api-client-0.6.4.tar.gz (66.6 kB view details)

Uploaded Source

Built Distribution

plex_api_client-0.6.4-py3-none-any.whl (158.7 kB view details)

Uploaded Python 3

File details

Details for the file plex-api-client-0.6.4.tar.gz.

File metadata

  • Download URL: plex-api-client-0.6.4.tar.gz
  • Upload date:
  • Size: 66.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.8.18

File hashes

Hashes for plex-api-client-0.6.4.tar.gz
Algorithm Hash digest
SHA256 17a0eba13ab944766d094626ba1a90e63e9db92a394e242c400ee60c8ff0ab20
MD5 7e92b0cb95f59fb72a0578b16150d8aa
BLAKE2b-256 c666e74c6674f3ca0b3aac9d4c6be932f978f3055d0efe37bd9164a35b957611

See more details on using hashes here.

File details

Details for the file plex_api_client-0.6.4-py3-none-any.whl.

File metadata

File hashes

Hashes for plex_api_client-0.6.4-py3-none-any.whl
Algorithm Hash digest
SHA256 4c019985a34ca8afcba36678f54583982485b8f765a032f5cf5e44f091bbf31a
MD5 68edcf2d0ce02e71afc211a57d5c89ca
BLAKE2b-256 f7d120c9db1aecd9f195780c4104c0fbf0ab329a8c093eef3c1f5531abb240f1

See more details on using hashes here.

Supported by

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