Metadata-Version: 2.1
Name: mayalabs
Version: 0.0.3
Summary: Python SDK for Maya Labs' natural language programming paradigm
Author-email: Maya Support <humans@mayalabs.io>
Maintainer-email: Maya Support <humans@mayalabs.io>
Project-URL: homepage, https://mayalabs.io
Project-URL: repository, https://github.com/mayahq/mayalabs-sdk-python
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENCE

## Maya Labs Python SDK

A new way to program machines, using natural language.

WIP version : alpha - 0.0.1.

Requirements : Python and PIP >v3.6+ and <3.10

## Installation

```shell
pip install mayalabs

```

## Usage

```python
import mayalabs

script = """
1. receive message {{payload}}
2. respond back with {{payload}}
"""

function = mayalabs.Function.create(name="Function1", script=script)

function.deploy()

output = function.call(term = "Hello, World")

# this will stop and delete your worker from profile. Comment out to view it on your worker dashboard.
function.clear()
```
