Skip to content

Releases: seermedical/seer-py

v0.6.6

02 Jul 06:43
0e7ed05
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.6.5...v.0.6.6

v0.6.5

27 Jan 03:00
228074c
Compare
Choose a tag to compare

Upgrades to gql v3.0.0, which introduces a bunch of breaking changes over v2.x.x.

v0.6.4

21 Oct 23:58
1190f9c
Compare
Choose a tag to compare

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

12 Oct 03:42
d78eb10
Compare
Choose a tag to compare
  • Fixed get_label_groups_for_studies() and get_label_groups_for_studies_dataframe()
    • previously it was only getting a subset (max 20) of label groups per study.
    • Now it gets ALL label groups for each study

Add `timeout` param to `Auth`

20 May 01:43
48606a0
Compare
Choose a tag to compare

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

17 Feb 04:28
a992ec7
Compare
Choose a tag to compare

Breaking change - removes dependency on scipy and makes Matplotlib dependency optional.

v0.3.0

27 Jul 00:48
cd598ec
Compare
Choose a tag to compare

Adds api-key authorisation support.

Breaking change - the auth parameter of SeerConnect has been renamed to seer_auth.

v0.2.2

23 Jun 07:26
093cc11
Compare
Choose a tag to compare

Periodic release with all changes since release v0.2.1.

v0.2.1 Refactor

13 Aug 05:53
b1254e4
Compare
Choose a tag to compare

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.

v0.1.1-beta: Merge pull request #3 from seermedical/lazy-fetch-urls

15 Jun 05:29
0a9c1d7
Compare
Choose a tag to compare