Skip to content

Commit

Permalink
Merge pull request #6 from cdisc-org/tig
Browse files Browse the repository at this point in the history
updated for tig requests
  • Loading branch information
RamilCDISC authored Dec 9, 2024
2 parents 4828e34 + 11ab9ae commit 92d4cd7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions cdisc_library_client/library_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ def get_cdashig(self, version):
href = f"/mdr/cdashig/{version}"
return self.get_api_json(href)

def get_tig(self, version, substandard):
href = f"/mdr/integrated/tig/{version}/{substandard}"
return self.get_api_json(href)

def get_terminology_package(self, version):
href = f"/mdr/ct/packages/{version}"
return self.get_api_json(href)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.1.5'
__version__ = '0.1.6'

import setuptools

Expand Down

0 comments on commit 92d4cd7

Please sign in to comment.