This will delete the page "get_prog_name"
. Please be certain.
def get_prog_name():
The "get_prog_name" method is used to return the API name. This method can be called with and without a created object.
None
Type -> string
>>> # call the Method 'get_prog_name'
>>> Obj_Name = Xcom_API.get_prog_name()
>>>
>>> # print Obj_Name
>>> print(Obj_Name)
'Xcom_API'
>>>
>>> # create an object of the Xcom-API-Class
>>> Object = Xcom_API()
>>>
>>> # call the Method 'get_prog_name'
>>> Obj_Name = Object.get_prog_name()
>>>
>>> # print Obj_Name
>>> print(Obj_Name)
'Xcom_API'
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
This will delete the page "get_prog_name"
. Please be certain.