Skip to content

Latest commit

 

History

History
168 lines (116 loc) · 12.6 KB

README.md

File metadata and controls

168 lines (116 loc) · 12.6 KB

Search

(search)

Overview

API Calls that perform search operations with Plex Media Server

Available Operations

perform_search

This endpoint performs a search across all library sections, or a single section, and returns matches as hubs, split up by type. It performs spell checking, looks for partial matches, and orders the hubs based on quality of results. In addition, based on matches, it will return other related matches (e.g. for a genre match, it may return movies in that genre, or for an actor match, movies with that actor).

In the response's items, the following extra attributes are returned to further describe or disambiguate the result:

  • reason: The reason for the result, if not because of a direct search term match; can be either:
    • section: There are multiple identical results from different sections.
    • originalTitle: There was a search term match from the original title field (sometimes those can be very different or in a foreign language).
    • <hub identifier>: If the reason for the result is due to a result in another hub, the source hub identifier is returned. For example, if the search is for "dylan" then Bob Dylan may be returned as an artist result, an a few of his albums returned as album results with a reason code of artist (the identifier of that particular hub). Or if the search is for "arnold", there might be movie results returned with a reason of actor
  • reasonTitle: The string associated with the reason code. For a section reason, it'll be the section name; For a hub identifier, it'll be a string associated with the match (e.g. Arnold Schwarzenegger for movies which were returned because the search was for "arnold").
  • reasonID: The ID of the item associated with the reason for the result. This might be a section ID, a tag ID, an artist ID, or a show ID.

This request is intended to be very fast, and called as the user types.

Example Usage

from plex_api_client import PlexAPI

s = PlexAPI(
    access_token="<YOUR_API_KEY_HERE>",
    client_id="3381b62b-9ab7-4e37-827b-203e9809eb58",
    client_name="Plex for Roku",
    client_version="2.4.1",
    platform="Roku",
    device_nickname="Roku 3",
)

res = s.search.perform_search(query="dylan", limit=5)

if res is not None:
    # handle response
    pass

Parameters

Parameter Type Required Description Example
query str ✔️ The query term arnold
section_id Optional[float] This gives context to the search, and can result in re-ordering of search result hubs
limit Optional[float] The number of items to return per hub 5
retries Optional[utils.RetryConfig] Configuration to override the default retry behavior of the client.

Response

operations.PerformSearchResponse

Errors

Error Type Status Code Content Type
errors.PerformSearchBadRequest 400 application/json
errors.PerformSearchUnauthorized 401 application/json
errors.SDKError 4XX, 5XX */*

perform_voice_search

This endpoint performs a search specifically tailored towards voice or other imprecise input which may work badly with the substring and spell-checking heuristics used by the /hubs/search endpoint. It uses a Levenshtein distance heuristic to search titles, and as such is much slower than the other search endpoint. Whenever possible, clients should limit the search to the appropriate type. Results, as well as their containing per-type hubs, contain a distance attribute which can be used to judge result quality.

Example Usage

from plex_api_client import PlexAPI

s = PlexAPI(
    access_token="<YOUR_API_KEY_HERE>",
    client_id="3381b62b-9ab7-4e37-827b-203e9809eb58",
    client_name="Plex for Roku",
    client_version="2.4.1",
    platform="Roku",
    device_nickname="Roku 3",
)

res = s.search.perform_voice_search(query="dead poop", limit=5)

if res is not None:
    # handle response
    pass

Parameters

Parameter Type Required Description Example
query str ✔️ The query term dead poop
section_id Optional[float] This gives context to the search, and can result in re-ordering of search result hubs
limit Optional[float] The number of items to return per hub 5
retries Optional[utils.RetryConfig] Configuration to override the default retry behavior of the client.

Response

operations.PerformVoiceSearchResponse

Errors

Error Type Status Code Content Type
errors.PerformVoiceSearchBadRequest 400 application/json
errors.PerformVoiceSearchUnauthorized 401 application/json
errors.SDKError 4XX, 5XX */*

get_search_results

This will search the database for the string provided.

Example Usage

from plex_api_client import PlexAPI

s = PlexAPI(
    access_token="<YOUR_API_KEY_HERE>",
    client_id="3381b62b-9ab7-4e37-827b-203e9809eb58",
    client_name="Plex for Roku",
    client_version="2.4.1",
    platform="Roku",
    device_nickname="Roku 3",
)

res = s.search.get_search_results(query="110")

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

Parameters

Parameter Type Required Description Example
query str ✔️ The search query string to use 110
retries Optional[utils.RetryConfig] Configuration to override the default retry behavior of the client.

Response

operations.GetSearchResultsResponse

Errors

Error Type Status Code Content Type
errors.GetSearchResultsBadRequest 400 application/json
errors.GetSearchResultsUnauthorized 401 application/json
errors.SDKError 4XX, 5XX */*