Skip to main content

A Client SDK of PlumberHub impliemented by python

Project description

plumberhub-client

A Client SDK of PlumberHub impliemented by python. plumberhub-client can be used with Python >= 3.7.

Installation

Install plumberhub-client with:

pip install plumberhub-client

or,

pipenv install plumberhub-client

Basic example

Here's a example. It will print each sample.

from plumberhub import PlumberHubClient

def handleSample(sample):
    print(sample)

def sayHello():
    print('hello')

    device = client.get_device()
    gain = client.get_gain()
    sampling_rate = client.get_sampling_rate()

    print(device)
    print(gain)
    print(sampling_rate)

    client.start()

def sayBye():
    print('bye')

client = PlumberHubClient(
    # plumberhub server hostname
    hostname = '127.0.0.1',

    # plumberhub server port
    port = 8080,

    # A clientId applied from plumberhub
    client_id = 'f7e9e4cabe7ed2f95ee506199cd41e0a0d352e91466ef7f2c87793a92e76d198',

    # Do something on sample incoming
    onsample = handleSample,

    onready = sayHello,

    onclose = sayBye
)

time.sleep(2)
client.stop()
client.close()

Working with BDF/EDF file

An example

License

plumberhub-client is a free Open Source software released under the MIT license.

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

plumberhub-client-0.3.0.tar.gz (5.7 kB view hashes)

Uploaded Source

Built Distribution

plumberhub_client-0.3.0-py3-none-any.whl (5.1 kB view hashes)

Uploaded 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