DAWNet client enables remote execution of python code triggered from a DAW.
Project description
dawnet-client
The DAWNet client is a python3 pip package. It is used to create DAWNet remotes. Remotes are scripts created with the python client. The client allows a user to register remote functions with the DAWNet discovery server. After a function has been registered it can then be triggered remotely from `DAWNet plugin.
::: warning NOTE: The plugin is in an active, pre-alpha state. It has only been tested on Ableton 11 on MAC M1. :::
Installation
pip install dawnet-client
Usage
This is a simple example of a DAWNet remote script created using the dawnet-client. The script defines an arbitrary function that takes two arguments, an integer and a DAWNetFilePath. The function is registered with the DAWNet discovery server. The script then connects to the DAWNet discovery server and waits for a remote trigger.
from dawnet_client import DAWNetFilePath, dawnet_client
# The token is generated by the DAWNet plugin.
# It is used by the discovery server to associate the remote with the plugin.
TOKEN="0715c132-0b31-406e-b562-9206c479a48a"
# The registered method can be named anything. Note that the method must be `async`.
# All parameters must be type hinted.
# 4 parameter types are supported: int, float, str, DAWNetFilePath
# DAWNetFilePath is a special type. When the file is sent to the remote, it is intercepted by the system and
# transported to a temp dir on the remote. In this case the variable `b` is local path to the file.
async def arbitrary_method(a: int, b: DAWNetFilePath):
try:
# -----------------------------------------
# This is where you can write custom code to operate on the input params.
# ex param `a` could be the number of variations created from param `b` using something like MusicLM
# -----------------------------------------
# This is how you send results back to the plugin, when processing is complete.
await dawnet_client.results().add_file(b, "wav")
# This message is displayed in the plugin.
await dawnet_client.results().add_message("This is a message XYZ")
# The send method begins the transfer of results data back to the plugin.
await dawnet_client.results().send()
return True
except Exception as e:
print(f"Error in arbitrary_method: {e}")
return f"Method encountered an error: {e}"
# The token generated by the plugin.
dawnet_client.set_token(token=TOKEN)
# The name of the remote. This is displayed in the plugin.
dawnet_client.set_name("My Remote Code")
# The description of the remote. This is displayed in the plugin.
dawnet_client.set_description("This is not a real description.")
# Register the method with the discovery server.
dawnet_client.register_method("arbitrary_method", arbitrary_method)
# This should be the last line of the script. It connects to the discovery server and waits for a remote trigger.
dawnet_client.connect_to_server()
CONFIGURATION:
export DAWNET_API_BASE_URL='http://localhost:8000'
export DAWNET_SOCKET_IP='0.0.0.0'
export DAWNET_SOCKET_PORT='8765'
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 dawnet-client-0.0.6.tar.gz.
File metadata
- Download URL: dawnet-client-0.0.6.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45a85d0a9b89d3feee0fb1060e95a8499f94f1e8dea0ddfc2fbb888d8baeef60
|
|
| MD5 |
ea021ce4d054e7343328421d6b912546
|
|
| BLAKE2b-256 |
7ab3d00809d8dff52ad99da4655ac3b5c68e7b9692c6d77d27a8262b66756916
|
File details
Details for the file dawnet_client-0.0.6-py3-none-any.whl.
File metadata
- Download URL: dawnet_client-0.0.6-py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11a25522afb9c2596384d42681591b273cc79533ca588daab616ef01517e0f1b
|
|
| MD5 |
0f393d19e9c368f2727f865492e7b54e
|
|
| BLAKE2b-256 |
bf7c672e9556310ecb2fb8767d8b837ce91e8ae400e3d231f9aad6720905a796
|