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