Skip to content

andonapp/andonapp-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AndonApp Python Client

Python client library for reporting data to Andon

Install

pip install andonapp

Usage

In order to programmatically connect to Andon's APIs you must first generate an API token. This is done by logging into your Andon account, navigating to the API settings page, and generating a new token. Make sure to record the token, and keep it secret.

Reference Andon's getting started guide and API guide for complete details on these prerequisites

Setting up the Client

Now that you have a token, create a client as follows:

from andonapp import AndonAppClient

client = AndonAppClient(org_name, api_token)

Reporting Data

Here's an example of using the client to report a success:

client.report_data(
    line_name='line 1',
    station_name='station 1',
    pass_result='PASS',
    process_time_seconds=100)

And a failure:

client.report_data(
    line_name='line 1',
    station_name='station 1',
    pass_result='FAIL',
    process_time_seconds=100,
    fail_reason='Test Failure',
    fail_notes='notes')

Updating a Station Status

Here's an example of flipping a station to Red:

client.update_station_status(
    line_name='line 1',
    station_name='station 1',
    status_color='RED',
    status_reason='Missing parts',
    status_notes='notes')

And back to Green:

client.update_station_status(
    line_name='line 1',
    station_name='station 1',
    status_color='GREEN',
    status_notes='notes')

License

Licensed under the MIT license.

About

Python client library for AndonApp

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages