mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-26 05:30:20 +00:00
Updated Readme
This commit is contained in:
parent
5b85a8c829
commit
e8afb79273
1 changed files with 11 additions and 9 deletions
20
README.md
20
README.md
|
@ -1,25 +1,19 @@
|
|||
* ## PlexAPI ##
|
||||
## PlexAPI ##
|
||||
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 the URL of an h264/aac video stream. (playable using a client like VLC, MPV, etc)
|
||||
* Get URL to stream stream h264/aac video (playable in VLC,MPV,etc).
|
||||
* Plex Sync Support.
|
||||
|
||||
Planned features:
|
||||
|
||||
* Create and maintain playlists.
|
||||
* List active sessions.
|
||||
* Play trailers and extras.
|
||||
* Provide useful utility scripts.
|
||||
* Better support for Music and Photos?
|
||||
|
||||
#### Install ###
|
||||
|
||||
pip install plexapi
|
||||
|
||||
|
||||
#### Getting a PlexServer Instance ####
|
||||
|
||||
There are two types of authentication. If running the PlexAPI on the same
|
||||
|
@ -101,3 +95,11 @@ print 'vlc "%s"' % jurassic_park.getStreamUrl(videoResolution='800x600')
|
|||
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.
|
||||
|
|
Loading…
Reference in a new issue