这是indexloc提供的服务,不要输入任何密码
Skip to content

Releases: robberwick/pylibrelinkup

v0.5.1

03 Nov 19:49
fb1f9a4

Choose a tag to compare

What's Changed

  • Handle missing c property in alarmRules when reading patient data by @robberwick in #33

Full Changelog: v0.5.0...v0.5.1

v0.5.0

03 Nov 17:00
83ffad0

Choose a tag to compare

What's Changed

Full Changelog: v0.4.0...v0.5.0

v0.4.0

02 Nov 17:53
94297aa

Choose a tag to compare

What's Changed

  • Fix ValueError being thrown when authentication receives a redirect response by @robberwick in #26
  • Handle Privacy Policy acceptance response when authenticating by @robberwick in #27

Full Changelog: v0.3.0...v0.4.0

v0.3.0

13 Oct 10:03
5596ede

Choose a tag to compare

Breaking Changes:

This release includes a breaking change to the API, in both naming and import behaviour. The Client class has been
renamed and refactored to PyLibreLinkUp. All instances of Client in existing code must be replaced with
PyLibreLinkUp, and imports should be updated accordingly.

Old way

from pylibrelinkup.client import Client, AuthenticationError
from pylibrelinkup.api_url import APIUrl
from pylibrelinkup.exceptions import TermsOfUseError

New way

from pylibrelinkup import PyLibreLinkUp, APIUrl, AuthenticationError, TermsOfUseError

You can also use wildcard imports to bring in commonly used symbols:

from pylibrelinkup import *

This change was made to simplify the API and make it easier to use. The old way of importing components from submodules
is still supported, but it is recommended to use the new way for better readability and maintainability.

What's Changed

  • Refactor API Client Implementation by @robberwick in #19
    It is now possible to import the most commonly used symbols directly from the top-level package. You no longer need to
    import individual components from submodules.
  • Update patient model string representation by @robberwick in #21
    The Patient model now has a more informative string representation that includes the patient's name and UUID.
  • Add all known region api urls by @robberwick in #23
    This change adds all known region API URLs to the APIUrl class. You can now access the API URL for all supported regions.

Full Changelog: v0.2.1...v0.3.0

v0.2.1

06 Oct 09:08
02a45aa

Choose a tag to compare

What's Changed

Full Changelog: v0.2.0...v0.2.1

v0.2.0

27 Sep 08:48
4aa0e30

Choose a tag to compare

What's Changed

  • Allow read method to accept multiple types for patient id by @robberwick in #8
  • Check that client is authenticated when calling read() by @robberwick in #10
  • Raise specific error when Terms of Use need to be accepted by @robberwick in #13

Full Changelog: v0.1.0...v0.2.0

v0.1.0

08 Sep 13:32
9be1f9b

Choose a tag to compare

What's Changed

Full Changelog: v0.0.1...v0.1.0

v0.0.1

08 Sep 10:56

Choose a tag to compare