Releases: pariveda/osdupy
Releases · pariveda/osdupy
0.4.0
0.3.0
Contributed by @eternelpanic:
- Added: Entitlements service (V2)
- Added: optional secret hash for AWS Cognito authorization with client secret
0.2.0
0.1.1
0.1.0
Release Date: 2020.10.13
Split the clients into separate modules to eliminate the boto3 dependency for those who don't need the AwsOsduClient
The change is very minor, and the only impacts will be:
osdupy
will no longer explicitly depend onboto3
. You will instead need to separately installboto3
if you intend to use theAwsOsduClient
class.- Client imports will have require additional namespace on import statements:
v0.0.10
from osdu.client import AwsOsduClient
from osdu.client import SimpleOsduClient
v0.1.0
from osdu.client.aws import AwsOsduClient
from osdu.client.simple import SimpleOsduClient