Skip to main content

Python API for LANA Process Mining

Project description

PyLana

Python 3.7 Pylana Maintenance

PyLana is Python API for LANA Process Mining. It focuses on resource management, but provides methods that can be used to access the processed data as well.

This package is still in initial development state. Anything may change at any time. The public API should not be considered stable.

Installation

You can install PyLana directly from PyPi with e.g.

$ pip install pylana

How to get started

To connect with an api at e.g. 'https:://cloud-backend.lanalabs.com', first create an API with

from pylana import create_api

api = create_api('https', 'cloud-backend.lanalabs.com', <API Key>)

You will require an API key that is valid for your LANA deployment. The returned api stores the url for a LANA Process Mining api as well as your authentication. After creation you can us it to manage the LANA process mining resources. Among other things you can upload data from python pandas data frames directly or connect logs and shiny dashboard resources referencing them by their names.

To upload a new log called "new-event-log" and shiny-dashboard named "new-shiny-dashboard", and connect them with each other, you can use the following code

upload_response = api.upload_event_log_df(
                            'new-event-log', df_event_log,
                            time_format='YYYY-mm-dd',
                            df_case=df_case_attributes)
shiny_dashboard = api.create_shiny_dashboard('new-shiny-dashboard')
connection_response = api.connect_shiny_dashboard(
                                upload_response.json()['id'],
                                shiny_dashboard['id'])

We also provide basic methods for direct http requests to LANA API endpoints, for example

response_list = api.get('/api/v2/dashboards')

will return a response with a list of dashboard metadata. For details about the endpoints refer to the swagger documentation of the LANA API.

How to contribute

See the details in CONTRIBUTING.md.

License

Apache License 2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pylana-0.1.0rc1.tar.gz (15.9 kB view hashes)

Uploaded Source

Built Distribution

pylana-0.1.0rc1-py3-none-any.whl (22.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page