Skip to main content

A simple python library for creating Oloren Orchestrator extensions.

Project description

Oloren Orchestrator - Python Extension Library

Installation

pip install oloren

A requirement is that you use Python version > 3.7 as the code uses dataclasses which were introduced in that version.

If for some reason you want to use it with Python 3.6 you can install the backport of dataclasses for Python 3.6 with:

pip install dataclasses

Getting Started

Check out this minimal example to get started:

import oloren as olo
import pandas as pd


@olo.register(description="Basic math operations on two numbers.")
def operation(operation=olo.Choice(["Add", "Subtract", "Multiply", "Divide"]), a=olo.Num(), b=olo.Num()):
    if operation == "Add":
        return a + b
    elif operation == "Subtract":
        return a - b
    elif operation == "Multiply":
        return a * b
    elif operation == "Divide":
        return a / b


@olo.register(description="Convert CSV file to JSON")
def dataframe_to_json(csv_file=olo.File()):
    return pd.read_csv(csv_file).to_json()


@olo.register(num_outputs=2)
def twooutputs(s=olo.String(), num=olo.Num()):
    return s, num


if __name__ == "__main__":
    olo.run("starterextension")

The key requirements are that each argument of your function has a default value that is set to one of the special Oloren types. These types subclass their relevant returned data types (e.g. string, int, float) so your autocomplete will work as normal.

Documentation

https://oloren-ai.github.io/python-extension-lib/index.html

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

oloren-0.0.59-py3-none-any.whl (1.3 MB view details)

Uploaded Python 3

File details

Details for the file oloren-0.0.59-py3-none-any.whl.

File metadata

  • Download URL: oloren-0.0.59-py3-none-any.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.12

File hashes

Hashes for oloren-0.0.59-py3-none-any.whl
Algorithm Hash digest
SHA256 c25d09a3ab1126a35d05c8d994a65989afeefdbf25d925f7890748645e977b64
MD5 ec1a4a68592be64ce2efe8b2faf70048
BLAKE2b-256 dfc46f16b74ae430bc523e9a52c5e384b667591a20a01757c7d71f3894b8d84f

See more details on using hashes here.

Supported by

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