openeo-python-client
openeo-python-client copied to clipboard
Python client API for OpenEO
A couple of notes and ideas on how to improve code quality and adopt best practices - start using [black](https://black.readthedocs.io/en/stable/) for code formatting - lot of interesting pointers in the...
Find a better way to protect the PrivateJsonFile on Windows that doesn't rely on Unix file permissions, because that is just not working very well. ### This is a follow...
openeo python client already supports using a config file for authentication related settings, but there is more opportunity for config file based configuration. E.g. - https://github.com/Open-EO/openeo-python-client/issues/187 - https://github.com/Open-EO/openeo-python-client/issues/260 - default...
I noticed this when doing `python setup.py bdist_wheel` with most recent setuptools/wheels packages locally (python 3.9 env): ``` ... reading manifest template 'MANIFEST.in' adding license file 'LICENSE' writing manifest file...
Issue https://github.com/Open-EO/openeo-python-client/issues/401 (starting over from PR #403)
After the meeting we had about the work done so far for Client Side Processing, one suggested improvement was to ease the way a user would get the data from...
@clausmichele PR #338 (client side processing aka localprocessing feature) has been merged. I think we also need some basic documentation, e.g. under the "cookbook section" https://open-eo.github.io/openeo-python-client/cookbook/index.html
with https://github.com/Open-EO/openeo-processes/pull/413 (not merged yet at the moment) `load_result` will be renamed to `load_stac` (and support for a single batch_job id (string) will be dropped) in v2.0.0 of openeo-processes. we...
follow up of Open-EO/openeo-processes#401 python client needs some kind of support for building process graphs with multiple result nodes
Not sure why it isn't there yet, but seems like an easy one to implement __or__ and __and__ in ProcessBuilder, so I can do for instance: ` if_( (x ==...