First test python file
My first test python file to start the project since this will be my first dwelling into python
This commit is contained in:
parent
2a8ed06825
commit
fff4a5c793
|
@ -0,0 +1,29 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
import json
|
||||
import requests
|
||||
|
||||
host = 'host.site'
|
||||
api_key = 'api_key_from_plexpy'
|
||||
url_base = 'url_base_with_beginning_slash_leave_blank_if_nothin'
|
||||
ssl = 'true_or_false_for_ssl'
|
||||
|
||||
if ssl == 'true':
|
||||
http = 'https'
|
||||
if ssl == 'false':
|
||||
http = 'http'
|
||||
|
||||
url = http + "://" + host + url_base + "/api/v2?apikey=" + api_key + "&cmd=get_activity"
|
||||
|
||||
requests.packages.urllib3.disable_warnings()
|
||||
|
||||
response = requests.get(url, verify=False)
|
||||
|
||||
json_input = response.text
|
||||
|
||||
decoded = json.loads(json_input)
|
||||
|
||||
stream_count = decoded['response']['data']['stream_count']
|
||||
stream_count = int(stream_count)
|
||||
|
||||
print(stream_count)
|
Loading…
Reference in New Issue