Skip to main content

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

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.

import dawnet_client.core as dawnet
from dawnet_client import DAWNetFilePath

# 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.results().add_file(b, "wav") 
        # This message is displayed in the plugin.
        await dawnet.results().add_message("This is a message XYZ")
        # The send method begins the transfer of results data back to the plugin.
        await dawnet.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.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", arbitrary_method) 
 
# 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 DAWNET_API_BASE_URL='http://localhost:8000'
export DAWNET_SOCKET_IP='0.0.0.0'
export DAWNET_SOCKET_PORT='8765'

Project details


Download files

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

Source Distribution

dawnet-client-0.0.16.tar.gz (8.3 kB view details)

Uploaded Source

Built Distribution

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

dawnet_client-0.0.16-py3-none-any.whl (8.7 kB view details)

Uploaded Python 3

File details

Details for the file dawnet-client-0.0.16.tar.gz.

File metadata

  • Download URL: dawnet-client-0.0.16.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

Hashes for dawnet-client-0.0.16.tar.gz
Algorithm Hash digest
SHA256 c9a91c6de381ec4196ceec0ee0675310c5eeed19cb95f0f2a96008a85c7d27e9
MD5 cb153fd4411a4c36e812398c2a02d922
BLAKE2b-256 0333270cd9218b77d614e12442ef1635961ef8b9b640e6d42c50ed1d2db5ab9a

See more details on using hashes here.

File details

Details for the file dawnet_client-0.0.16-py3-none-any.whl.

File metadata

File hashes

Hashes for dawnet_client-0.0.16-py3-none-any.whl
Algorithm Hash digest
SHA256 adbac29a7e1477f11f6e81533eb74e248d4c9a19ebc3be7b394b44b6822f4e55
MD5 5d0915dad0ebd0fe106d1ae66c9d9d61
BLAKE2b-256 59629e83abcb0df2dbfc4d97b50ed78f2d56488a02ded28720a7ff61b988d55e

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