I'm using normal Python to access the UnitV2 camera and it works but I can't get the JSON data from any of the modules. Here's where I'm at so far.
import requests
from lxml import html
r = requests.get('http://10.254.239.1')
status = r.status_code
tree = html.fromstring(r.content)
*** When I inspect the page, this is where the JSON data is stored but I don't get anything from this.***
json = tree.xpath('//*[@id="func-result-pre"]')
print(json)