We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
stac-asset implements patterns like:
import pystac import stac_asset href = "https://raw.githubusercontent.com/radiantearth/stac-spec/master/examples/simple-item.json" item = pystac.read_file(href) await stac_asset.download_item(item, ".")
Seems like there would be some ergonomics and discoverability wins in adding a download method to pystac.Item itself so you could do:
download
pystac.Item
import pystac href = "https://raw.githubusercontent.com/radiantearth/stac-spec/master/examples/simple-item.json" item = pystac.read_file(href) await item.download(".")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
stac-asset implements patterns like:
Seems like there would be some ergonomics and discoverability wins in adding a
download
method topystac.Item
itself so you could do:The text was updated successfully, but these errors were encountered: