Added XML requests for plex, but will be replaced with a api request handling JSON objects instead. Also created cpuTemp for reading linux cpu temps, and added this to app API

This commit is contained in:
2017-02-08 13:35:09 +01:00
parent fb61212454
commit aea7491964
49 changed files with 30124 additions and 68 deletions

View File

@@ -1 +0,0 @@
/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/struct.py

View File

@@ -0,0 +1,15 @@
__all__ = [
# Functions
'calcsize', 'pack', 'pack_into', 'unpack', 'unpack_from',
'iter_unpack',
# Classes
'Struct',
# Exceptions
'error'
]
from _struct import *
from _struct import _clearcache
from _struct import __doc__