Motivus client library
Project description
Motivus framework
This package contains:
- A CLI utility to manage:
- Algorithm compilation
- Version registry uploads to Motivus marketplace
- A Client library to use Motivus cluster nodes
Installation
$ pip install motivus
Configuration
Configuration is provided through environment variables. You can also create a .env file.
# .env
# for consuming algorithms from Motivus marketplace repository and sending tasks to Motivus cluster
APPLICATION_TOKEN=MWBatxipDHG4daX3ebBPyWDj36AsWqbOJc=
WEBSOCKET_URI=wss://waterbear.api.motivus.cl/client_socket/websocket
# for pushing algorithm versions to Motivus marketplace repository
MOTIVUS_PERSONAL_ACCESS_TOKEN=MWBpatrZpMb1vD_QwAro=
CLI
Compilation
Docker required
TODO: add compilation process description
$ motivus build -h
Upload new version
Uploads packaged algorithm version contents to Motivus marketplace
Authentication is provided through env value
MOTIVUS_PERSONAL_ACCESS_TOKEN=MWBpatxipsWqbOJc=
$ motivus push -h
Worker for local development
Docker required
Start a worker in loopback mode, useful for local algorithm development
$ motivus loopback -h
Worker
Docker required
Start a worker that connects to Motivus cluster.
$ motivus worker -h
Client
Basic task execution example
Set your application token as an environment value as follows:
APPLICATION_TOKEN=MWBatxipD4Dj36AsWqbOJc=
Execute some tasks, i.e. the "example" algorithm on Motivus marketplace repository.
from motivus.client import Client
conn = await Client.connect()
task_def = {
"algorithm": "example",
"algorithm_version": "1.0.0",
# this would run the equivalent to " $ example 1 3 " on a Motivus worker
"arguments": [1, 3]
}
task_id = conn.call_async(task_def)
task = conn.select_task(task_id)
result = await task
Getting help
You can contact us anytime using our contact form.
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 Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file motivus-1.7.0.tar.gz.
File metadata
- Download URL: motivus-1.7.0.tar.gz
- Upload date:
- Size: 19.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd0af50d7f4b8df4a4311da6eb293c861669bb1ea82a5323efcd03b1deeaf64c
|
|
| MD5 |
0aec5c5c9066fb9fac3175c6a82d4907
|
|
| BLAKE2b-256 |
0fc99c651cf522b61f10df5d04681c0c86e670158fff2032fd0d3ea7fe0ee926
|
File details
Details for the file motivus-1.7.0-py3-none-any.whl.
File metadata
- Download URL: motivus-1.7.0-py3-none-any.whl
- Upload date:
- Size: 21.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e9157940e694eb6dac28f5752bc15dcaa1202c9be2e4e0809853e584494b9e0
|
|
| MD5 |
f0efc71c12bbb5f65f13312c27f5123e
|
|
| BLAKE2b-256 |
78c841b5fe69bd61a4e239f057825e056001199195d9486c54213e3d0a05d8be
|