Skip to main content

Planhat API SDK for Python and Robocorp's Python Automation Framework

Project description

Robocorp-Planhat: A Planhat API SDK integrated with Robocorp's Python Automation Framework

PyPI - Version License

This automation library is designed for use with Robocorp's Python Automation Framework. It includes data modeling for the base Planhat API object types and a customized client and associated session for use in authenticating, retrieving, and updating those objects.

For additional information regarding the Planhat API, please refer to the Planhat API documentation.

Installation

For most users, this project should be installed via your conda.yaml or package.yaml within a Robocorp automation task package or action server package under your pip dependancies. For example:

conda:
  channels:
    - conda-forge
  dependencies:
    - python=3.9.16
    - pip=22.1.2
    - pip:
      - robocorp==1.6.2
      - robocorp-planhat==1.0.0

Alternatively, you can use your preferred installation method to install the package directly from PyPI.

Getting started

To use the Planhat API, you will need to have a Planhat account and an API key. You can find your API key in the Planhat web application under Settings > Service Accounts. You will need to create a new service account and generate an API key.

Once you have your API key, you can use the Planhat API SDK to authenticate and retrieve data from Planhat. Here is an example of how to use the Planhat API SDK to retrieve a list of companies:

from planhat import Planhat, types as ph_types

# Create a Planhat client
client = Planhat(api_key="your-api-key")

# Retrieve a list of Companies
companies = client.get_objects(ph_types.Company)

# Print the names of the companies
for company in companies:
    print(company.name)

Using Control Room Vault

When used in conjunction with the Robocorp Python Automation Framework, you can use Robocorp's Control Room Vault to store your Planhat API key. This is a secure way to store your API key and access it from your Robocorp automation tasks. When creating the secret in the Control Room vault, it maust have the key api_key. Here is an example of how to use the Planhat API SDK with the Control Room Vault:

from robocorp.tasks import task
from planhat import Planhat, types as ph_types

@task
def get_companies():
    # Create a Planhat client
    client = Planhat(vault_secret_name="your-vault-secret-name")

    # Retrieve a list of Companies
    companies = client.get_objects(ph_types.Company)

    # Print the names of the companies
    for company in companies:
        print(company.name)

Further documentation on how to use the Robocorp Python Automation Framework can be found on the Robocorp Docs site.

API Reference

Information on specific classes and methods can be found in the API Reference.

Changelog

See the CHANGELOG for a history of notable changes.

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

robocorp_planhat-1.0.0.tar.gz (27.5 kB view details)

Uploaded Source

Built Distribution

robocorp_planhat-1.0.0-py3-none-any.whl (28.6 kB view details)

Uploaded Python 3

File details

Details for the file robocorp_planhat-1.0.0.tar.gz.

File metadata

  • Download URL: robocorp_planhat-1.0.0.tar.gz
  • Upload date:
  • Size: 27.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.9.13 Windows/10

File hashes

Hashes for robocorp_planhat-1.0.0.tar.gz
Algorithm Hash digest
SHA256 ca836172d524051a2ca2bb897ee7b2805386b9c3931da58fcaf5d53081080a54
MD5 46e299519f97154dc77c83bdd0a3f497
BLAKE2b-256 480790c9d68111a377935b0b7f2f7b2c9718ac5859ba937d46e4d10c153deac3

See more details on using hashes here.

File details

Details for the file robocorp_planhat-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for robocorp_planhat-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6d9f0d90faa54d951e2e3e1ada401590e18960825b5d833e736b409ab118f653
MD5 fbbd9a3f1f9e0f59f608f49d3c036cfb
BLAKE2b-256 c495693c8e6c691b5c6a90ac83dae113f4f96a137decfda22e44743906847145

See more details on using hashes here.

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