
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
A simple python client for accessing data stored in Nightscout
To create an instance of the nightscout.Api class, with no authentication:
import nightscout
api = nightscout.Api('https://yournightscoutsite.herokuapp.com')
To use authentication, instantiate the nightscout.Api class with your api secret:
api = nightscout.Api('https://yournightscoutsite.herokuapp.com', api_secret='your api secret')
To fetch recent sensor glucose values (SGVs):
entries = api.get_sgvs()
print([entry.sgv for entry in entries])
Specify time ranges:
api.get_sgvs({'count':0, 'find[dateString][$gte]': '2017-03-07T01:10:26.000Z'})
To fetch recent treatments (boluses, temp basals):
treatments = api.get_treatments()
print([treatment.eventType for treatment in treatments])
profile_definition_set = api.get_profiles()
profile_definition = profile_definition_set.get_profile_definition_active_at(datetime.now())
profile = profile_definition.get_default_profile()
print "Duration of insulin action = %d" % profile.dia
five_thirty_pm = datetime(2017, 3, 24, 17, 30)
five_thirty_pm = profile.timezone.localize(five_thirty_pm)
print "Scheduled basal rate at 5:30pm is = %f" % profile.basal.value_at_date(five_thirty_pm)
FAQs
A library that provides a Python interface to Nightscout
We found that python-nightscout demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.