Open navigation

Firstline — Fmc12000cp

import requests from requests.auth import HTTPDigestAuth url = "http://192.168.1.108/cgi-bin/snapshot.cgi?channel=2&subtype=1" auth = HTTPDigestAuth('admin', 'your_password') response = requests.get(url, auth=auth, stream=True)

with open("thermal_snapshot.jpg", "wb") as f: f.write(response.content) firstline fmc12000cp

Did you find it helpful? Yes No

Send feedback
Sorry we couldn't be helpful. Help us improve this article with your feedback.