Skip to content

markkorput/pyRemoteParams

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

79 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyRemoteParams

Build Status

Python remote_params package lets you add (remote) GUI controlable parameters to your pyhton application.

Install

pip install remote_params

Run tests

python setup.py test

Usage

person1 = Params()
person1.string('name')

person2 = Params()
person2.string('name')

room = Params()
room.group(person1)
room.group(person2)

params_osc_server = create_osc_server(room, port=8082)
# or
params_websocket_server = WebsocketServer(Server(room), port=8083)

About

Remote (GUI) controllable params for python applications

Resources

License

Stars

Watchers

Forks

Packages

No packages published