Skip to main content

Simple client for AutoCortext API

Project description

Simple AutoCortext API Client

This is a simple client for the AutoCortext API.

Setup

  1. An .env file with the variable AUTOCORTEXT_API_KEY set to a valid key.
  2. An .env file with the variable AUTOCORTEXT_ORG_ID set to a valid organization ID.

Example

Install the AutoCortext clinet using pip.

pip install autocortext-py

Use the client in your source code.

import os
from autocortext_py import AutoCortext
from dotenv import load_dotenv

load_dotenv()

client = AutoCortext(
    org_id=os.getenv("AUTOCORTEXT_ORG_ID"),
    api_key=os.getenv("AUTOCORTEXT_API_KEY"),
)

client.config(
    verbosity="concise",
    machine="Conveyor System",
    system="Electrical",
    response_type="Technician",
    env="prod",
)

res = client.troubleshoot("The 24 volt system in the conveyor is not powering on.")
print(res)

client.set_verbosity("verbose")
res = client.troubleshoot("OK how do I fix it?")
print(res)

client.save()

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

autocortext_py-0.4.1.tar.gz (5.2 kB view hashes)

Uploaded Source

Built Distribution

autocortext_py-0.4.1-py3-none-any.whl (5.7 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