Будьте уважні! Це призведе до видалення сторінки "get_prog_version"
.
def get_prog_version():
The "get_prog_version" method is used to return the version of the API. This method can be called with and without a created object.
None
Type -> string
>>> # call the Method 'get_prog_version
>>> Obj_Version = Xcom_API.get_prog_version()
>>>
>>> # print Obj_Version
>>> print(Obj_Version)
'v1.0'
>>>
>>> # create an object of the Xcom-API-Class
>>> Object = Xcom_API()
>>>
>>> # call the Method 'get_prog_version'
>>> Obj_Version = Object.get_prog_version()
>>>
>>> # print Obj_Version
>>> print(Obj_Version)
'v1.0'
Hochschule Anhalt | Anhalt University of Applied Sciences | Department 6 EMW
Xcom-API
Tobias Müller, M. Eng.
📧 Tobias.Mueller@HS-Anhalt.de
© es-lab.de, 31.10.2017
Будьте уважні! Це призведе до видалення сторінки "get_prog_version"
.