From 34bf86cf3e31d926e867cc22c387780537bc9165 Mon Sep 17 00:00:00 2001 From: hydro service Date: Thu, 22 Feb 2018 14:23:24 -0500 Subject: [PATCH] 1.2.12 release --- hs_restclient/__init__.py | 2 +- scimetatest.py | 5 +++++ setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 scimetatest.py diff --git a/hs_restclient/__init__.py b/hs_restclient/__init__.py index fd8a4f0..26ef34c 100644 --- a/hs_restclient/__init__.py +++ b/hs_restclient/__init__.py @@ -5,7 +5,7 @@ """ __title__ = 'hs_restclient' -__version__ = '1.2.11' +__version__ = '1.2.12' import os diff --git a/scimetatest.py b/scimetatest.py new file mode 100644 index 0000000..8a5f16d --- /dev/null +++ b/scimetatest.py @@ -0,0 +1,5 @@ +from hs_restclient import HydroShare, HydroShareAuthBasic +auth = HydroShareAuthBasic(username='aphelionz', password='fossil76') +hs = HydroShare(hostname="dev-hs-2.cuahsi.org", auth=auth, verify=False) + +# https://dev-hs-2.cuahsi.org/hsapi/resource/cde01b3898c94cdab78a2318330cf795/files/161030/metadata/ diff --git a/setup.py b/setup.py index c756f03..0e7b99d 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # https://packaging.python.org/en/latest/single_source_version.html - version='1.2.11', + version='1.2.12', description='HydroShare REST API client library', long_description=long_description,