Releases: seermedical/seer-py
v0.6.6
v0.6.5
v0.6.4
Fixed the following bug with get_paginated_response()
. When using an iteration_path
, and the data at the iteration_path
level is empty on the first iteration, then it used to return an empty list, instead of the top level information.
E.g. for a function that calls it, such as client.get_label_groups_for_study("1234")
It should return
{'id': '1234',
'name': 'someStudyName',
'labelGroups': []}
But previously returned
[]
Fixed it so it returns the correct thing.
v0.6.3
Add `timeout` param to `Auth`
This allows setting custom timeouts (other than the default of 30 seconds), which can be helpful in certain use environments/use cases.
Also switches out print
statements for use of the logging
module.
v0.4.0
v0.3.0
v0.2.2
v0.2.1 Refactor
This is a major refactor of seerpy.
It includes most of the same functionality, as well as new functionality, but most methods have been renamed, at the least to conform to snake_case style instead of camelCase style.
Because of that, existing code which uses this package will need to be re-written to use the new format.