Skip to main content

Driver module for the SulfiLogger sensor

Project description

SulfiLogger sensor

Module for reading data from the SulfiLogger sensor

python requirements

  • Python 3.7 or newer

python code example

Data acquisition from sensor

from pySulfiLoggerAPI.sensor import Sensor

# locate sensor
sensor = Sensor()
comport = sensor.findCom()

if(comport == None):
    print('info','no sensor found.')
else:
    # data acquisition
    sample = sensor.getData(comport)
    print(['signal', 'unit', 'temperature', 'unit'])
    print(sample)

Data acquisition from webdata.sulfilogger.com

from pySulfiLoggerAPI.webData import WebData

# login
webData = WebData(username ="username", password= "password")
webData.login()
# get sites
sites = webData.getAvailableSites()
print(sites)
# get data from time interval
data=webData.getDataFromPeriod(sites[3], '2019-09-25T00:00:00%2B02:00','2019-10-05T00:00:00%2B02:00', "mg/L", "1hr")
print(data)

more examples

A python script for continuously logging and plotting data from the SulfiLogger sensor via the bokeh module is available upon request.

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

pySulfiLoggerAPI-0.0.5.tar.gz (4.1 kB view hashes)

Uploaded Source

Built Distribution

pySulfiLoggerAPI-0.0.5-py3-none-any.whl (4.9 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