Skip to content

Latest commit

 

History

History
51 lines (31 loc) · 2.43 KB

README.md

File metadata and controls

51 lines (31 loc) · 2.43 KB

Statistics

(statistics)

Overview

API Calls that perform operations with Plex Media Server Statistics

Available Operations

get_statistics

This will return the media statistics for the server

Example Usage

import plex_api

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


res = s.statistics.get_statistics(timespan=4)

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

Parameters

Parameter Type Required Description Example
timespan Optional[int] The timespan to retrieve statistics for
the exact meaning of this parameter is not known
4

Response

operations.GetStatisticsResponse

Errors

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