Satellogic data in pure Julia

Mark Litwintschik has a blog (cannot add link) showing how to obtain satellite images from Satellogic using python.

How would one start to implement this in Julia?
The author uses GDAL and duckdb; both GDAL.jl and DuckDB.jl exist.

Is this worth pursuing without having a workstation with equivalent specifications?

Can you share the Python package used? These APIs usually perform HTTP requests to download the files. Once the files are on disk, you can use any package to load the file of given file format, or GeoIO.jl to load any format.

Thanks for your response.
It is entirely possible other Julia packages can handle this, hence reaching out to the community.

Tried again to add link of the blog …
https://tech.marksblogg.com/satellogic-open-data-feed.html

Apparently there is no Python package. The author combines various low-level packages to achieve his goals. It really depends on what you want to achieve.