0 purchases
robolytix 0.2.1
Robolytix Package
Robolytix is the key online analytic and monitoring tool for Robotic Process Automation using Sonar technology to evaluate, audit, monitor and improve performance of robots operating in any application, RPA platform or custom solution. Manage your RPA projects effectively with exact KPIs. Visualise your whole process at one place.
For more information, please visit https://www.robolytix.com/
Requirements
Python 3.4+
Installation & Usage
pip install
You can install the Robolytix client package from PyPI
pip install robolytix
(you may need to run pip with root permission: sudo pip install robolytix)
Then import the package:
import robolytix
Setuptools
Install via Setuptools. You need to checkout package from Github https://github.com/robolytix/robolytix-sdk.git and step into Python directory.
python setup.py install --user
(or sudo python setup.py install to install the package for all users)
Then import the package:
import robolytix
Getting Started
Please follow the installation procedure and then run the following:
from __future__ import print_function
import time
import robolytix
from robolytix.rest import ApiException
from pprint import pprint
# Configure API key authorization: api_key
configuration = robolytix.Configuration()
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
# create an instance of the API class
api_instance = robolytix.CommonApi(robolytix.ApiClient(configuration))
try:
# Account details
api_response = api_instance.account()
pprint(api_response)
except ApiException as e:
print("Exception when calling CommonApi->account: %s\n" % e)
# Configure API key authorization: api_key
configuration = robolytix.Configuration()
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
# create an instance of the API class
api_instance = robolytix.CommonApi(robolytix.ApiClient(configuration))
try:
# Ping
api_response = api_instance.ping()
pprint(api_response)
except ApiException as e:
print("Exception when calling CommonApi->ping: %s\n" % e)
Documentation for API Endpoints
All URIs are relative to https://api.robolytix.com/v1
Class
Method
HTTP request
Description
CommonApi
account
GET /account
Account details
CommonApi
ping
GET /ping
Ping
DefaultApi
listprocesses
GET /listprocesses
List processes
DefaultApi
listtypes
GET /listtypes
List types
DefaultApi
sonar
POST /messages
Sonar
Documentation For Models
InlineResponseDefault
InlineResponseDefault1
InlineResponseDefault2
InlineResponseDefault2Data
Message
Process
Type
Documentation For Authorization
api_key
Type: API key
API key parameter name: Authorization
Location: HTTP header
Author
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.