No description
Find a file
2017-02-20 02:10:45 -05:00
docs Merge branch '3.0.0' into pkkid/opt 2017-02-19 22:36:53 -05:00
plexapi Make flake8 happy 2017-02-20 00:37:00 -05:00
tests Test README examples 2017-02-20 02:10:45 -05:00
tests-old All config options can be set with environment variables; Update all os.environ calls to use CONFIG.get; Finish documenting configuration options. 2017-02-19 22:18:23 -05:00
tools Track missing docs 2017-02-15 01:33:43 -05:00
.coveragerc more cov 2017-02-01 20:49:11 +01:00
.gitignore Finish documenting video 2017-02-13 14:38:40 -05:00
.travis.yml Remove requirements.txt 2017-02-20 00:41:02 -05:00
AUTHORS.txt Update authors 2017-02-15 00:49:19 -05:00
LICENSE.txt Started work on better documentation 2017-01-21 23:06:55 -05:00
MANIFEST.in Cleanup formatting 2017-02-01 22:53:05 -05:00
README.md Test README examples 2017-02-20 02:10:45 -05:00
requirements.txt Clean requirements comments 2017-02-19 22:45:09 -05:00
requirements_dev.txt Make flake8 happy 2017-02-20 00:37:00 -05:00
requirements_doc.txt Clean requirements comments 2017-02-19 22:45:09 -05:00
setup.py only include the plexapi package when running setup 2017-01-09 01:52:46 -05:00

PlexAPI

Coverage Status Documentation Status Python bindings for the Plex API.
  • Navigate local or remote shared libraries.
  • Mark shows watched or unwatched.
  • Request rescan, analyze, empty trash.
  • Play media on connected clients.
  • Get URL to stream stream h264/aac video (playable in VLC,MPV,etc).
  • Plex Sync Support.
  • Plex Audio Support.

Install

pip install plexapi

Getting a PlexServer Instance

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.signin('<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, but passing in the baseurl and auth token directly.

from plexapi.server import PlexServer
baseurl = 'http://plexserver:32400'
token = '2ffLuB84dqLswk9skLos'
plex = PlexServer(baseurl, token)

Usage Examples

# 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 watched.
plex.library.section('TV Shows').get('Game of Thrones').markWatched()
# 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.
avatar = plex.library.section('Movies').get('Cars')
client = plex.client("Michael's iPhone")
client.playMedia(avatar)
# Example 5: List all content with the word 'Game' in the title.
for video in plex.search('Game'):
    print('%s (%s)' % (video.title, video.TYPE))
# Example 6: List all movies directed by the same person as Die Hard.
movies = plex.library.section('Movies')
die_hard = movies.get('Die Hard')
director = die_hard.directors[0]
for movie in movies.search(None, director=director):
    print(movie.title)
# Example 7: List files for the latest episode of The 100.
thelastone = plex.library.section('TV Shows').get('The 100').episodes()[-1]
for part in thelastone.iterParts():
    print(part.file)
# Example 8: Get a URL to stream a movie or show in another client
die_hard = plex.library.section('Movies').get('Die Hard')
print('Run running the following command to play in VLC:')
print('vlc "%s"' % die_hard.getStreamURL(videoResolution='800x600'))
# Example 9: Get audio/video/all playlists
for playlist in plex.playlists():
    print(playlist.title)

FAQs

Q. Why are you using camelCase and not following PEP8 guidelines?

A. 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.

Q. Why don't you offer feature XYZ?

A. 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.

Q. What are some helpful links if trying to understand the raw Plex API?