Skip to main content

Package for sending (hardware) experiment requests across the network and receiving the results

Project description

Waverunner is a client/server tool for sending lists of waveforms to be run through a tester and return the results

client-side code:

from waverunner import Client, Request

waver = waverunner.Client('192.168.2.1',12345)

request = waverunner.Request(
    list_of_waveforms = np.array([
        [np.random.randn(100) for i in range(100)]
    ]),
    other_stuff='unsure',
    more_stuff='more other stuff',
)

result = waver.request(request)

server-side code:

create a script (let's call it batch-script.py) that looks like this:

import numpy
import fancyInstrumentControl

def main(stimulus):
    return fancyInstrumentControl.pass(stimulus)

then run waverunner: python -m waverunner /path/to/batch-script.py

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

waverunner-0.1b4-py2.py3-none-any.whl (12.4 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page