mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-24 20:53:09 +00:00
Try building docs again
This commit is contained in:
parent
fc1c10e554
commit
eb69d8faed
2 changed files with 1 additions and 5 deletions
|
@ -16,7 +16,7 @@ import copy, sys
|
||||||
import sphinx_rtd_theme
|
import sphinx_rtd_theme
|
||||||
from os.path import abspath, dirname, join
|
from os.path import abspath, dirname, join
|
||||||
from recommonmark.parser import CommonMarkParser
|
from recommonmark.parser import CommonMarkParser
|
||||||
sys.path.insert(0, join(dirname(abspath('.')), 'plexapi'))
|
sys.path.insert(0, join(dirname(abspath(__file__)), 'plexapi'))
|
||||||
import plexapi
|
import plexapi
|
||||||
|
|
||||||
extensions = [
|
extensions = [
|
||||||
|
|
|
@ -150,7 +150,6 @@ class MyPlexAccount(PlexObject):
|
||||||
return [MyPlexUser(self, elem) for elem in data]
|
return [MyPlexUser(self, elem) for elem in data]
|
||||||
|
|
||||||
|
|
||||||
@utils.registerPlexObject
|
|
||||||
class MyPlexUser(PlexObject):
|
class MyPlexUser(PlexObject):
|
||||||
""" This object represents non-signed in users such as friends and linked
|
""" This object represents non-signed in users such as friends and linked
|
||||||
accounts. NOTE: This should not be confused with the :class:`~myplex.MyPlexAccount`
|
accounts. NOTE: This should not be confused with the :class:`~myplex.MyPlexAccount`
|
||||||
|
@ -200,7 +199,6 @@ class MyPlexUser(PlexObject):
|
||||||
self.username = data.attrib.get('username')
|
self.username = data.attrib.get('username')
|
||||||
|
|
||||||
|
|
||||||
#@utils.registerPlexObject
|
|
||||||
class MyPlexResource(PlexObject):
|
class MyPlexResource(PlexObject):
|
||||||
""" This object represents resources connected to your Plex server that can provide
|
""" This object represents resources connected to your Plex server that can provide
|
||||||
content such as Plex Media Servers, iPhone or Android clients, etc. The raw xml
|
content such as Plex Media Servers, iPhone or Android clients, etc. The raw xml
|
||||||
|
@ -297,7 +295,6 @@ class MyPlexResource(PlexObject):
|
||||||
results[i] = (url, self.accessToken, None)
|
results[i] = (url, self.accessToken, None)
|
||||||
|
|
||||||
|
|
||||||
@utils.registerPlexObject
|
|
||||||
class ResourceConnection(PlexObject):
|
class ResourceConnection(PlexObject):
|
||||||
""" Represents a Resource Connection object found within the
|
""" Represents a Resource Connection object found within the
|
||||||
:class:`~myplex.MyPlexResource` objects.
|
:class:`~myplex.MyPlexResource` objects.
|
||||||
|
@ -322,7 +319,6 @@ class ResourceConnection(PlexObject):
|
||||||
self.httpuri = 'http://%s:%s' % (self.address, self.port)
|
self.httpuri = 'http://%s:%s' % (self.address, self.port)
|
||||||
|
|
||||||
|
|
||||||
#@utils.registerPlexObject
|
|
||||||
class MyPlexDevice(PlexObject):
|
class MyPlexDevice(PlexObject):
|
||||||
""" This object represents resources connected to your Plex server that provide
|
""" This object represents resources connected to your Plex server that provide
|
||||||
playback ability from your Plex Server, iPhone or Android clients, Plex Web,
|
playback ability from your Plex Server, iPhone or Android clients, Plex Web,
|
||||||
|
|
Loading…
Reference in a new issue