Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/dc_tools/odc/apps/dc_tools/s3_inventory.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import re
import sys
from fnmatch import fnmatch
from odc.aws import s3_client
from datacube.utils.aws import s3_client
from odc.aws.inventory import list_inventory


Expand Down
7 changes: 6 additions & 1 deletion apps/dc_tools/odc/apps/dc_tools/s3_to_dc.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@
from datacube import Datacube
from datacube.index.hl import Doc2Dataset
from datacube.ui.click import environment_option, pass_config
from datacube.utils.aws import (
_aws_unsigned_check_env,
auto_find_region,
s3_client,
s3_fetch,
)
from datacube.utils.documents import parse_doc_stream
from odc.aio import S3Fetcher, s3_find_glob
from odc.apps.dc_tools.utils import (
Expand All @@ -37,7 +43,6 @@
url_string_replace,
verify_lineage,
)
from odc.aws import _aws_unsigned_check_env, auto_find_region, s3_client, s3_fetch
from pystac import Item


Expand Down