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 --upgrade
Tests
from the root of the source code dir run:
pip uninstall dawnet-client -y && pip install -e . && pytest -s
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.
For thorough documentation and tutorials visit: https://dawnet.tools/client/
import dawnet_client.core as dawnet
from dawnet_client import DAWNetFilePath, ui_param
# 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: 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.
# The `ui_param` is an optional decorator. It is used to define how the parameter input UI will be rendered in the plugin.
# If the decorator is not used, the parameter will be rendered as a text input field.
@ui_param('a', 'DAWNetNumberSlider', min=0, max=10, step=1, default=5)
@ui_param('c', 'DAWNetMultiChoice', options=['cherries', 'oranges', 'grapes'], default='grapes')
async def arbitrary_method(a: int, b: DAWNetFilePath, c: str):
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.results().add_file(b)
# This message is displayed in the plugin.
await dawnet.results().add_message("This is a message XYZ")
return True
except Exception as e:
#explicitly send an error message back to the plugin
await dawnet.results().add_error(f"Method encountered an error: {e}")
return False
# The token generated by the plugin.
dawnet.set_token(token=TOKEN)
# The name of the remote. This is displayed in the plugin.
dawnet.set_name("My Remote Code")
# The description of the remote. This is displayed in the plugin.
dawnet.set_description("This is not a real description.")
# Register the method with the discovery server.
dawnet.register_method(arbitrary_method)
# When a file is sent to the remote as a DAWNetFilePath, it will become available at this sample rate.
dawnet.set_input_target_sample_rate(44100) #supported values [22050, 32000, 44100, 48000]
# When a file is sent to the remote as a DAWNetFilePath, it will become available at this bit rate.
dawnet.set_input_target_bit_depth(16) #supported values [16, 24, 32]
# When a file is sent to the remote as a DAWNetFilePath, it will become available with this number of channels.
dawnet.set_input_target_channels(2) #supported values [1, 2] mono/stereo respectively
# When a file is sent to the remote as a DAWNetFilePath, it will become available in this format.
dawnet.set_input_target_format('wav') #supported values ["wav", "mp3", "aif", "flac"]
# When results are sent back to the plugin, they will be sent at this sample rate.
dawnet.set_output_target_sample_rate(44100)
# When results are sent back to the plugin, they will be sent at this bit rate.
dawnet.set_output_target_bit_depth(16)
# When results are sent back to the plugin, they will be sent with this number of channels.
dawnet.set_output_target_channels(2)
# When results are sent back to the plugin, they will be sent in this format.
dawnet.set_output_target_format('wav')
# This should be the last line of the script. It connects to the discovery server and waits for a remote trigger.
dawnet.connect_to_server()
CONFIGURATION:
export DN_CLIENT_API_BASE_URL='http://localhost:8000'
export DN_CLIENT_SOCKET_IP='0.0.0.0'
export DN_CLIENT_SOCKET_PORT='8765'
export DN_CLIENT_SENTRY_API_KEY='XXX'
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.1.3.tar.gz.
File metadata
- Download URL: dawnet-client-0.1.3.tar.gz
- Upload date:
- Size: 18.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b95e23a15145b17eb4d9b800473dd1063c42f2688f34fa7362a5ab46e79bfff6
|
|
| MD5 |
1df9e73a3b1bced57071dff7a0fe083a
|
|
| BLAKE2b-256 |
f747dc734ff28b8098fae9bacd8cdc9d3b7e28de58c689a1b5e7af177d0f4eab
|
File details
Details for the file dawnet_client-0.1.3-py3-none-any.whl.
File metadata
- Download URL: dawnet_client-0.1.3-py3-none-any.whl
- Upload date:
- Size: 20.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70bcc17e27e51bd6682748ae9bfd22a15d8d38f86ac987caaa9070dc5bdc6575
|
|
| MD5 |
daa96ac8a9196ecd839cd517c04cb25f
|
|
| BLAKE2b-256 |
4cbd1d0369fc6ac5d9d2fde939f867f2c5bf15da627cf3453aef14e9c064fcee
|