Release Date: 2021-10-01
Changes by Chris Parsons from Petrosys to include Entitlements service.
Release Date: 2021-10-01
Changes by Chris Parsons from Petrosys to include secret hash for more security around Cognito Authorization.
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
Release Date: 2020.10.19
Added profile
constructor arg and class property for AwsOsduClient to specify the AWS profile to be used when connecting to Cognito to obtain access token.