Releases: hedgertronic/oura-ring
Releases · hedgertronic/oura-ring
v0.3.0
Features a bug fix and new endpoints implemented by @kalifg.
The bug fix merged in:
- Heart rate endpoint not returning values due to expecting datetime and not date
The new features merged in:
- Six new V2 endpoints
- Single document requests
- Tag endpoint replace by enhanced tag
This release also bumps the version number in pyproject.toml
to match the version in the PyPi release.
v0.2.0
Responses that contain multiple pages (i.e. that include next_token
) will now automatically make follow up requests and concatenate results together. Because of this, response data from methods such as get_daily_readiness
have no need to include next_token
or data
keys. These methods will now return a list of the data records. This is equivalent to doing data["data"]
in previous version.
v0.1.0
Initial release of oura-ring
.
Features include:
OuraClient
class that can be initialized with personal access token.- Nine different API endpoints that can be called from
OuraClient
.
Further documentation and examples can be found in README.md.