Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Heimdall | 6,059 | a day ago | 28 | mit | PHP | |||||
An Application dashboard and launcher | ||||||||||
Organizr | 4,383 | 14 days ago | 26 | gpl-3.0 | PHP | |||||
HTPC/Homelab Services Organizer - Written in PHP | ||||||||||
Pms Docker | 2,461 | 3 months ago | 4 | Shell | ||||||
Plex Media Server Docker repo, for all your PMS docker needs. | ||||||||||
Docker Traefik | 2,029 | 5 days ago | 53 | mit | Shell | |||||
Docker media and home server stack with Docker Compose, Traefik, Swarm Mode, Google OAuth2/Authelia, and LetsEncrypt | ||||||||||
Plexupdate | 1,595 | 7 months ago | 12 | gpl-2.0 | Shell | |||||
Plex Update script to simplify the life of Linux Plex Media Server users. | ||||||||||
Python Plexapi | 980 | 292 | 17 | 6 days ago | 56 | May 30, 2022 | 47 | bsd-3-clause | Python | |
Python bindings for the Plex API. | ||||||||||
Synclounge | 960 | a month ago | 376 | June 24, 2022 | 25 | mit | JavaScript | |||
Enjoy Plex with your friends. In Sync. Together. | ||||||||||
Pmsservice | 442 | 18 days ago | 12 | mit | C# | |||||
Plex Media Server service wrapper for windows | ||||||||||
Config | 396 | 2 months ago | 25 | gpl-2.0 | Shell | |||||
Armbian Linux configuration utility | ||||||||||
Pms_updater | 366 | 2 years ago | 31 | mit | Shell | |||||
Shell script for updating the Plex Media Server inside the FreeNAS Plex plugin |
Unofficial Python bindings for the Plex API. Our goal is to match all capabilities of the official Plex Web Client. A few of the many features we currently support are:
pip install plexapi
Documentation can be found at Read the Docs.
Join our Discord for support and discussion.
There are two types of authentication. If you are running on a separate network or using Plex Users you can log into MyPlex to get a PlexServer instance. An example of this is below. NOTE: Servername below is the name of the server (not the hostname and port). If logged into Plex Web you can see the server name in the top left above your available libraries.
from plexapi.myplex import MyPlexAccount
account = MyPlexAccount('<USERNAME>', '<PASSWORD>')
plex = account.resource('<SERVERNAME>').connect() # returns a PlexServer instance
If you want to avoid logging into MyPlex and you already know your auth token string, you can use the PlexServer object directly as above, by passing in the baseurl and auth token directly.
from plexapi.server import PlexServer
baseurl = 'http://plexserver:32400'
token = '2ffLuB84dqLswk9skLos'
plex = PlexServer(baseurl, token)
# Example 1: List all unwatched movies.
movies = plex.library.section('Movies')
for video in movies.search(unwatched=True):
print(video.title)
# Example 2: Mark all Game of Thrones episodes as played.
plex.library.section('TV Shows').get('Game of Thrones').markPlayed()
# Example 3: List all clients connected to the Server.
for client in plex.clients():
print(client.title)
# Example 4: Play the movie Cars on another client.
# Note: Client must be on same network as server.
cars = plex.library.section('Movies').get('Cars')
client = plex.client("Michael's iPhone")
client.playMedia(cars)
# Example 5: List all content with the word 'Game' in the title.
for video in plex.search('Game'):
print(f'{video.title} ({video.TYPE})')
# Example 6: List all movies directed by the same person as Elephants Dream.
movies = plex.library.section('Movies')
elephants_dream = movies.get('Elephants Dream')
director = elephants_dream.directors[0]
for movie in movies.search(None, director=director):
print(movie.title)
# Example 7: List files for the latest episode of The 100.
last_episode = plex.library.section('TV Shows').get('The 100').episodes()[-1]
for part in last_episode.iterParts():
print(part.file)
# Example 8: Get audio/video/all playlists
for playlist in plex.playlists():
print(playlist.title)
# Example 9: Rate the 100 four stars.
plex.library.section('TV Shows').get('The 100').rate(8.0)
To control Sonos speakers directly using Plex APIs, the following requirements must be met:
Due to the design of Sonos music services, the API calls to control Sonos speakers route through https://sonos.plex.tv and back via the Plex server's remote access. Actual media playback is local unless networking restrictions prevent the Sonos speakers from connecting to the Plex server directly.
from plexapi.myplex import MyPlexAccount
from plexapi.server import PlexServer
baseurl = 'http://plexserver:32400'
token = '2ffLuB84dqLswk9skLos'
account = MyPlexAccount(token)
server = PlexServer(baseurl, token)
# List available speakers/groups
for speaker in account.sonos_speakers():
print(speaker.title)
# Obtain PlexSonosPlayer instance
speaker = account.sonos_speaker("Kitchen")
album = server.library.section('Music').get('Stevie Wonder').album('Innervisions')
# Speaker control examples
speaker.playMedia(album)
speaker.pause()
speaker.setVolume(10)
speaker.skipNext()
Use:
tools/plex-boostraptest.py
with appropriate arguments and add this new server to a shared user which username is defined in environment veriable SHARED_USERNAME. It uses official docker image to create a proper instance.
For skipping the docker and reuse a existing server use
python plex-bootstraptest.py --no-docker --username USERNAME --password PASSWORD --server-name NAME-OF-YOUR-SEVER
Also in order to run most of the tests you have to provide some environment variables:
After this step you can run tests with following command:
py.test tests -rxXs --ignore=tests/test_sync.py
Some of the tests in main test-suite require a shared user in your account (e.g. test_myplex_users, test_myplex_updateFriend, etc.), you need to provide a valid shared user's username to get them running you need to provide the username of the shared user as an environment variable SHARED_USERNAME. You can enable a Guest account and simply pass Guest as SHARED_USERNAME (or just create a user like plexapitest and play with it).
To be able to run tests over Mobile Sync api you have to some some more environment variables, to following values exactly:
And finally run the sync-related tests:
py.test tests/test_sync.py -rxXs
Why are you using camelCase and not following PEP8 guidelines?
This API reads XML documents provided by MyPlex and the Plex Server. We decided to conform to their style so that the API variable names directly match with the provided XML documents.
Why don't you offer feature XYZ?
This library is meant to be a wrapper around the XML pages the Plex server provides. If we are not providing an API that is offerered in the XML pages, please let us know! -- Adding additional features beyond that should be done outside the scope of this library.
What are some helpful links if trying to understand the raw Plex API?