↧
Answer by Ryszard Styczynski for Using OnVif PullPoint Services with Zeep
Note that datetime used in events.wsdl seems to be XML type. In Python it's supported by timedelta from datetime. import datetime timeout = datetime.timedelta(seconds=100)...
View ArticleAnswer by El Sampsa for Using OnVif PullPoint Services with Zeep
Must be of the class isodate.Duration. This fixes the problem: import isodate Timeout = isodate.Duration(seconds=10)
View ArticleUsing OnVif PullPoint Services with Zeep
I'm having hard time in trying to subscribe to the OnVif pullpoint services in standard IP cameras. The SOAP client I'm using is Zeep https://python-zeep.readthedocs.io/en/master/index.html It seems...
View Article