{
"info": {
"author": "CS Systemes d'Information (CSSI)",
"author_email": "admin@geostorm.eu",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: GIS"
],
"description": "eodag\n=====\n\n.. image:: https://badge.fury.io/py/eodag.svg\n :target: https://badge.fury.io/py/eodag\n\n.. image:: https://readthedocs.org/projects/pip/badge/?version=latest&style=flat\n :target: https://eodag.readthedocs.io/en/latest/\n\n.. image:: https://mybinder.org/badge_logo.svg\n :target: https://mybinder.org/v2/git/https%3A%2F%2Fbitbucket.org%2Fgeostorm%2Feodag.git/master?filepath=examples%2Ftuto_basics.ipynb\n\nEODAG (Earth Observation Data Access Gateway) is a command line tool and a plugin-oriented Python framework for searching,\naggregating results and downloading remote sensed images while offering a unified API for data access regardless of the\ndata provider. The EODAG SDK is structured around three functions:\n\n * List product types: list of supported products and their description\n\n * Search products (by product type or uid) : searches products according to the search criteria provided\n\n * Download products : download product \u201cas is\"\n\nEODAG is developed in Python. It is structured according to a modular plugin architecture, easily extensible and able to\nintegrate new data providers. Three types of plugins compose the tool:\n\n * Catalog search plugins, responsible for searching data (OpenSearch, CSW, ...), building paths, retrieving quicklook,\n combining results\n\n * Download plugins, allowing to download and retrieve data locally (via FTP, HTTP, ..), always with the same directory\n organization\n\n * Authentication plugins, which are used to authenticate the user on the external services used (JSON Token, Basic Auth, OAUTH, ...).\n\nRead `the documentation `_ for more insights.\n\nInstallation\n============\n\nEODAG is on `PyPI `_::\n\n python -m pip install eodag\n\nUsage\n=====\n\nCommand line interface\n----------------------\n\nCreate a configuration file from the template `user_conf_template.yml` provided with the repository, filling\nin your credentials as expected by each provider (note that this configuration file is required by now. However, this\nwill change in the future).\n\nThen you can start playing with it:\n\n* To search for products and crunch the results of the search::\n\n eodag search \\\n --conf my_conf.yml \\\n --box 1 43 2 44 \\\n --start 2018-01-01 \\\n --end 2018-01-31 \\\n --cloudCover 20 \\\n --productType S2_MSI_L1C\n --cruncher FilterLatestIntersect \\\n --storage my_search.geojson\n\nThe request above search for product types `S2_MSI_L1C` and will crunch the result using cruncher `FilterLatestIntersect`\nand storing the overall result to `my_search.geojson`.\n\nYou can pass arguments to a cruncher on the command line by doing this (example with using `FilterOverlap` cruncher\nwhich takes `minimum_overlap` as argument)::\n\n eodag search -f my_conf.yml -b 1 43 2 44 -s 2018-01-01 -e 2018-01-31 -p S2_MSI_L1C \\\n --cruncher FilterOverlap \\\n --cruncher-args FilterOverlap minimum_overlap 10\n\nThe request above means : \"Give me all the products of type `S2_MSI_L1C`, use `FilterOverlap` to keep only those products\nthat are contained in the bbox I gave you, or whom spatial extent overlaps at least 10% (`minimum_overlap`) of the surface\nof this bbox\"\n\n* To download the result of a previous call to `search`::\n\n eodag download --conf my_conf.yml --search-results my_search.geojson\n\n* To list all available product types and supported providers::\n\n eodag list\n\n* To list available product types on a specified supported provider::\n\n eodag list -p sobloo\n\n* To see all the available options and commands::\n\n eodag --help\n\n* To print log messages, add `-v` to `eodag` master command. e.g. `eodag -v list`. The more `v` given (up to 3), the more\n verbose the tool is. For a full verbose output, do for example: ``eodag -vvv list``\n\n\nREST API\n--------\n\nAn eodag installation can be exposed through a REST api from the command line::\n\n # eodag serve-rest --help\n Usage: eodag serve-rest [OPTIONS]\n\n Start eodag HTTP server\n\n Options:\n -f, --config PATH File path to the user configuration file with its\n credentials [required]\n -d, --daemon TEXT run in daemon mode\n -w, --world run flask using IPv4 0.0.0.0 (all network interfaces),\n otherwise bind to 127.0.0.1 (localhost). This maybe\n necessary in systems that only run Flask [default:\n False]\n -p, --port INTEGER The port on which to listen [default: 5000]\n --debug Run in debug mode (for development purpose) [default:\n False]\n --help Show this message and exit.\n\n\nPython API\n----------\n\nExample usage for interacting with the api in your Python code:\n\n.. code-block:: python\n\n from eodag import EODataAccessGateway\n\n dag = EODataAccessGateway()\n product_type = 'S2_MSI_L1C'\n footprint = {'lonmin': 1, 'latmin': 43.5, 'lonmax': 2, 'latmax': 44}\n start, end = '2018-01-01', '2018-01-31'\n search_results = dag.search(productType=product_type, box=footprint, start=start, end=end)\n product_paths = dag.download_all(search_results)\n for path in product_paths:\n print('Downloaded : {}'.format(path))\n\n\nContribute\n==========\n\nIf you intend to contribute to eodag source code::\n\n git clone https://bitbucket.org/geostorm/eodag.git\n cd eodag\n python -m pip intall -r requirements-dev.txt\n pre-commit install\n\nTo run the default test suite (which excludes end-to-end tests)::\n\n tox\n\n.. note::\n\n You may encounter a Python `RuntimeWarning` saying that `numpy.dtype` size changed. If this is the case,\n you can suppress it by doing this on the command line before running the tests or eodag cli:\n `export PYTHONWARNINGS=\"ignore:numpy.dtype size changed\"`\n\nTo only run end-to-end test::\n\n tox -- tests.test_end_to_end\n\nTo run the entire tests (units, integration and end-to-end)::\n\n tox -- tests eodag\n\n\n.. note::\n\n Running the `tox` command will also build the docs. As The documentation\n includes some notebooks (for the turorials), the build process will need\n `pandoc `_ to succeed. If the build process fails for\n you, please `install `_ pandoc and try\n again.\n\n.. note::\n\n eodag is tested against python versions 2.7, 3.5 and 3.6. Ensure you have\n these versions installed before you run tox. You can use\n `pyenv `_ to manage many different versions\n of python\n\nReleases are made by tagging a commit on the master branch. To make a new release,\n\n * Ensure you correctly updated `README.rst` and `CHANGES.rst` (and occasionally,\n also `NOTICE` - in case a new dependency is added).\n * Check that the version string in `eodag/__meta__.py` (the variable `__version__`)\n is correctly updated\n * Push your local master branch to remote. That will trigger the bitbucket pipeline\n that runs the unit tests.\n * Tag the commit that represents the state of the release with a message. For example,\n for version 1.0, do this: `git tag -a v1.0 -m 'version 1.0'`\n * Push the tags to bitbucket: `git push --tags`. This will trigger a build on bitbucket\n pipelines that will do the release automatically.\n\nThe documentation is managed by a webhook, and the latest documentation on readthedocs follows\nthe documentation present in `master`. Therefore, there is nothing to do apart from updating\nthe `master` branch to publish the latest documentation.\n\nLICENSE\n=======\n\nEODAG is licensed under Apache License v2.0.\nSee LICENSE file for details.\n\n\nAUTHORS\n=======\n\nEODAG is developed by CS Syst\u00e8mes d'Information.\n\n\nCREDITS\n=======\n\nEODAG is built on top of amazingly useful open source projects. See NOTICE file for details about those projects and\ntheir licenses.\nThank you to all the authors of these projects !\n\n\n",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://bitbucket.org/geostorm/eodag",
"keywords": "",
"license": "Apache 2.0",
"maintainer": "",
"maintainer_email": "",
"name": "eodag",
"package_url": "https://pypi.org/project/eodag/",
"platform": "",
"project_url": "https://pypi.org/project/eodag/",
"project_urls": {
"Bug Tracker": "https://bitbucket.org/geostorm/eodag/issues/",
"Documentation": "https://eodag.readthedocs.io/en/latest/",
"Homepage": "https://bitbucket.org/geostorm/eodag",
"Source Code": "https://bitbucket.org/geostorm/eodag"
},
"release_url": "https://pypi.org/project/eodag/1.3.3/",
"requires_dist": [
"click",
"requests",
"python-dateutil",
"PyYAML",
"tqdm",
"shapely",
"owslib",
"six",
"geojson",
"pyproj",
"usgs",
"boto3 (==1.7.64)",
"numpy",
"rasterio",
"protobuf",
"grpcio",
"jsonpath-rw",
"lxml",
"xarray",
"flask (>=1.0.2)",
"markdown (>=3.0.1)",
"unidecode (==1.0.22)",
"whoosh",
"futures ; python_version < \"3.5\"",
"mock ; python_version < \"3.5\"",
"nose ; extra == 'dev'",
"tox ; extra == 'dev'",
"faker ; extra == 'dev'",
"coverage ; extra == 'dev'",
"moto (==1.3.6) ; extra == 'dev'",
"twine ; extra == 'dev'",
"wheel ; extra == 'dev'",
"flake8 ; extra == 'dev'",
"pre-commit ; extra == 'dev'",
"mock ; (python_version < \"3.5\") and extra == 'dev'",
"sphinx (==1.8.0) ; extra == 'docs'",
"nbsphinx (==0.3.5) ; extra == 'docs'",
"nbsphinx-link (==1.1.1) ; extra == 'docs'",
"jupyter ; extra == 'tutorials'",
"ipyleaflet ; extra == 'tutorials'",
"ipywidgets ; extra == 'tutorials'",
"matplotlib ; extra == 'tutorials'",
"folium ; extra == 'tutorials'",
"imageio ; extra == 'tutorials'"
],
"requires_python": "",
"summary": "Earth Observation Data Access Gateway",
"version": "1.3.3"
},
"last_serial": 5959756,
"releases": {
"0.2.0": [
{
"comment_text": "",
"digests": {
"md5": "54d527fec67329833c03fb439a5ac359",
"sha256": "7bc288b0befdaa19af6583744c6cdf78806db709d1a9ff13c492bd20144a7e88"
},
"downloads": -1,
"filename": "eodag-0.2.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "54d527fec67329833c03fb439a5ac359",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 88701,
"upload_time": "2018-07-17T09:32:19",
"url": "https://files.pythonhosted.org/packages/8a/dd/cb5fb6bacbfe44f56ba8780539a6381f29f12e4102da97f35cc6f102f657/eodag-0.2.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "53a1c33ac9db6d1e8802e6b5d3ab5330",
"sha256": "7c7199ff89cb439cc06a60987bd153699b1a071129b70f2262c93da7a8c4a9e5"
},
"downloads": -1,
"filename": "eodag-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "53a1c33ac9db6d1e8802e6b5d3ab5330",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 58694,
"upload_time": "2018-07-17T09:32:21",
"url": "https://files.pythonhosted.org/packages/4a/cb/e5562cf39cf0aa3897abb6e6350c196b996621bd5f45dedf96e097459800/eodag-0.2.0.tar.gz"
}
],
"0.3.0": [
{
"comment_text": "",
"digests": {
"md5": "c11a49fe63cc1dab74ba450d7c5d6db5",
"sha256": "ebc6e95e0eeb4940ba6c7a5f8bd69f7d0a6eab6bd635531093448a7da0920083"
},
"downloads": -1,
"filename": "eodag-0.3.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c11a49fe63cc1dab74ba450d7c5d6db5",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 88859,
"upload_time": "2018-07-23T09:41:23",
"url": "https://files.pythonhosted.org/packages/71/eb/b77cb6f6597a465522735ec1486e98763d75d0f1dc182304b84a4dd2b762/eodag-0.3.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e66386947b7783d3bce0bfb318198172",
"sha256": "12e2223e71b3ac117a39ff1a9ce7373e4471daad249b0bec5bda70f32c6df55b"
},
"downloads": -1,
"filename": "eodag-0.3.0.tar.gz",
"has_sig": false,
"md5_digest": "e66386947b7783d3bce0bfb318198172",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 63008,
"upload_time": "2018-07-23T09:41:24",
"url": "https://files.pythonhosted.org/packages/aa/6d/4dfbaf1ad340e97fbdd49c3ec9fec9bef0d9d42a6f933b687a539ba704ad/eodag-0.3.0.tar.gz"
}
],
"0.4.0": [
{
"comment_text": "",
"digests": {
"md5": "2f9425252c5fc2f84f070ece5b1779bc",
"sha256": "6de704c0bb1df1d59dc9bef8b3cdb66b4583f19dfac1372867aeaf1a3998ad61"
},
"downloads": -1,
"filename": "eodag-0.4.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "2f9425252c5fc2f84f070ece5b1779bc",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 89642,
"upload_time": "2018-07-26T08:09:46",
"url": "https://files.pythonhosted.org/packages/e4/f4/9116f60d4515977622b0849d3451d0c06e1f8d11bcb232b3060c4aaac317/eodag-0.4.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "fc96bba6d1b17d17dbe0270d7d63da10",
"sha256": "7ae86558bf9665ff36960a20e7e138ec86f1205a5dc392b10d41da41e382696f"
},
"downloads": -1,
"filename": "eodag-0.4.0.tar.gz",
"has_sig": false,
"md5_digest": "fc96bba6d1b17d17dbe0270d7d63da10",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 63786,
"upload_time": "2018-07-26T08:09:47",
"url": "https://files.pythonhosted.org/packages/00/27/0bbe61685f54433dc46fc73d54c5240689b20d04178b8fa867483dd9620c/eodag-0.4.0.tar.gz"
}
],
"0.5.0": [
{
"comment_text": "",
"digests": {
"md5": "1c330ed7fc0912af037e9b78f9b91ced",
"sha256": "352ba3ae85e91e8fe9220cea8bbebe0f8552ca1d37b634195d7ff7f531a1743b"
},
"downloads": -1,
"filename": "eodag-0.5.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1c330ed7fc0912af037e9b78f9b91ced",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 90151,
"upload_time": "2018-08-02T12:11:50",
"url": "https://files.pythonhosted.org/packages/71/d8/d886f9c9e63079ab2058caf2fd01e664c132280c2ef394d6831057b0f62f/eodag-0.5.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "8b4b0255803727665adb633da1eefebc",
"sha256": "bb31ceea6440c0f408e10e9c1f8a9e4fbeb2034b0bd79c60739e603d50997948"
},
"downloads": -1,
"filename": "eodag-0.5.0.tar.gz",
"has_sig": false,
"md5_digest": "8b4b0255803727665adb633da1eefebc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 64679,
"upload_time": "2018-08-02T12:11:51",
"url": "https://files.pythonhosted.org/packages/e5/b2/173275de793cbc20fc63e586a26a7ff383695fdc27126ff97fa06c61710a/eodag-0.5.0.tar.gz"
}
],
"0.6.0": [
{
"comment_text": "",
"digests": {
"md5": "1ce54000e113279a334d2da903976026",
"sha256": "4a8925a9a534122a014dfddd7184089a0c7b4c8f016646af1980158acda80bde"
},
"downloads": -1,
"filename": "eodag-0.6.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1ce54000e113279a334d2da903976026",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 95820,
"upload_time": "2018-08-09T16:06:35",
"url": "https://files.pythonhosted.org/packages/fd/96/3b87a3affc79a347347e9f7c3224bdb590d34a0eedc5b617fc46835754c3/eodag-0.6.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "edcc355bfe24b0106eb5fbb5190035b2",
"sha256": "2f8062ced47228b760ccbb86c19a1413db84ffde5fd7acb757bb2cdad7e4fe48"
},
"downloads": -1,
"filename": "eodag-0.6.0.tar.gz",
"has_sig": false,
"md5_digest": "edcc355bfe24b0106eb5fbb5190035b2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 165007,
"upload_time": "2018-08-09T16:06:37",
"url": "https://files.pythonhosted.org/packages/a2/c9/a674c6a544837725234b09d1551e0bdb93408dd925a0184121c8efc05f3f/eodag-0.6.0.tar.gz"
}
],
"0.6.1": [
{
"comment_text": "",
"digests": {
"md5": "0ae8022160ceb934e6c0624e17cecfe1",
"sha256": "7413a2d38fb66f968cfa350b7e143702aa1f122d50418d5655f939adfcb1b45b"
},
"downloads": -1,
"filename": "eodag-0.6.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0ae8022160ceb934e6c0624e17cecfe1",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 96709,
"upload_time": "2018-09-19T14:56:07",
"url": "https://files.pythonhosted.org/packages/28/ab/5adfd523f78876b31227fa9095610f322ddb3ede790706afdf1ae90d6045/eodag-0.6.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "dcd9f88a5b5e54744600c90e949c6b0b",
"sha256": "3f104247c2ec7283441be5b494f1094d68d7230decd4fec95fa5c524951b5819"
},
"downloads": -1,
"filename": "eodag-0.6.1.tar.gz",
"has_sig": false,
"md5_digest": "dcd9f88a5b5e54744600c90e949c6b0b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 504183,
"upload_time": "2018-09-19T14:56:08",
"url": "https://files.pythonhosted.org/packages/ef/68/69c51890116f5501de168171c96517487a71c67cf8e88fb28d34772979e7/eodag-0.6.1.tar.gz"
}
],
"0.6.2": [
{
"comment_text": "",
"digests": {
"md5": "c7b9be0f8a41dcf342e1222124193816",
"sha256": "ed6fdcb9f0dc1bd9bd8215de3824ed88353d743718596f6edc21a0c80c9f085c"
},
"downloads": -1,
"filename": "eodag-0.6.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c7b9be0f8a41dcf342e1222124193816",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 96715,
"upload_time": "2018-09-24T10:13:59",
"url": "https://files.pythonhosted.org/packages/ee/32/0e51e59bb421e2e82372ddc8f6392c9c11e5dc9950f97ddc0b9ce28723dd/eodag-0.6.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "d76cf81b8f619c65a71a4a905a2e716b",
"sha256": "98c4435400d8a959e713118b6f95a6113e5255ffc84433a0e6a03aaa2e3031d3"
},
"downloads": -1,
"filename": "eodag-0.6.2.tar.gz",
"has_sig": false,
"md5_digest": "d76cf81b8f619c65a71a4a905a2e716b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 504782,
"upload_time": "2018-09-24T10:14:01",
"url": "https://files.pythonhosted.org/packages/c4/e1/43eae47cb5098ffd9883ad878c7c0312fbf67b2451bcc1352418484c882e/eodag-0.6.2.tar.gz"
}
],
"0.6.3": [
{
"comment_text": "",
"digests": {
"md5": "a500760fd33591bd2fdee5d0d6a74642",
"sha256": "7bb8d27fe24b259dfdadf2518e1de7795bc53411aeeb5e7a09dbec2cfeb08b1f"
},
"downloads": -1,
"filename": "eodag-0.6.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a500760fd33591bd2fdee5d0d6a74642",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 96814,
"upload_time": "2018-10-04T13:44:01",
"url": "https://files.pythonhosted.org/packages/40/a5/e2ec138c5a3e9185a25b1f5b7c2d8a96893d755deb46d9b19501d8792430/eodag-0.6.3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ff877ce519849cfa69b2a8738033affd",
"sha256": "f91c8a6ef2335f1ef31e8960bd3426a4f47e4966128aac4d0b053ddc5c61257e"
},
"downloads": -1,
"filename": "eodag-0.6.3.tar.gz",
"has_sig": false,
"md5_digest": "ff877ce519849cfa69b2a8738033affd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3750533,
"upload_time": "2018-10-04T13:44:03",
"url": "https://files.pythonhosted.org/packages/5c/65/b69ca1d3905484bb7d05911e4354e60c8534947376722feeab8de92ba40c/eodag-0.6.3.tar.gz"
}
],
"0.7.0": [
{
"comment_text": "",
"digests": {
"md5": "b23de11cb98805949d095bf8343baa89",
"sha256": "aca0f62ab6b47e4a3cc285d3aa58a47574b1badfe0c5ef86767bc962d94a8db9"
},
"downloads": -1,
"filename": "eodag-0.7.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "b23de11cb98805949d095bf8343baa89",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 99982,
"upload_time": "2018-12-04T15:40:12",
"url": "https://files.pythonhosted.org/packages/00/58/dd3ba40ec0dce8252d2fadf906bf7685cc92333c7123c1c7cfe9c706bc94/eodag-0.7.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "6221495fbf79e2bc1660b249bdd11c1a",
"sha256": "fd78ffc53f2c976b8f157e3fa95f3c377b6b63801ad10e3b2107d1cd54b094ef"
},
"downloads": -1,
"filename": "eodag-0.7.0.tar.gz",
"has_sig": false,
"md5_digest": "6221495fbf79e2bc1660b249bdd11c1a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3754870,
"upload_time": "2018-12-04T15:40:14",
"url": "https://files.pythonhosted.org/packages/8b/31/3a15f4d7a8019e200fb9d2d0c3e88e133d580cd59cfea18d15624cf179fe/eodag-0.7.0.tar.gz"
}
],
"0.7.1": [
{
"comment_text": "",
"digests": {
"md5": "c24cd4184c181fae0a0368e4bebcb6d9",
"sha256": "54b4aab98f89a67602343bcac19aca2616c1582b7ac5d20706fc6acf2e141c03"
},
"downloads": -1,
"filename": "eodag-0.7.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c24cd4184c181fae0a0368e4bebcb6d9",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 115150,
"upload_time": "2019-03-01T17:22:54",
"url": "https://files.pythonhosted.org/packages/5a/34/a106b2a58086a85d58375b1b36b465f66baeeadedcdfd7304ce5d13e4aef/eodag-0.7.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "543ba1f3b77d23a9db40cc2daa33d1de",
"sha256": "30fa6ed88cd528c73b0ff3c62a44673d67ce903179ce103fd1bd33a6848e0d33"
},
"downloads": -1,
"filename": "eodag-0.7.1.tar.gz",
"has_sig": false,
"md5_digest": "543ba1f3b77d23a9db40cc2daa33d1de",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3767281,
"upload_time": "2019-03-01T17:22:56",
"url": "https://files.pythonhosted.org/packages/05/97/aa0c79501d43db524f1352ef512c333bc75847fe3c8e3114f0b6fe326085/eodag-0.7.1.tar.gz"
}
],
"0.7.2": [
{
"comment_text": "",
"digests": {
"md5": "c48fa1724d665715517a4cecb5b47258",
"sha256": "7127c113cc4190a816d00b26558938af61c75122d088bd877d295f3165b868f0"
},
"downloads": -1,
"filename": "eodag-0.7.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c48fa1724d665715517a4cecb5b47258",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 121749,
"upload_time": "2019-03-26T10:43:40",
"url": "https://files.pythonhosted.org/packages/34/7d/fe92bb041b38412909e8e4953389f76ec4b9fa3bb62a36c45b3c2b06d277/eodag-0.7.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "a9a4860575b22bacee41bfcc2ff907ab",
"sha256": "e9c0dd873796d5385b1278c3249c26cadb8e782e3fa2607447b7f9a1053091f7"
},
"downloads": -1,
"filename": "eodag-0.7.2.tar.gz",
"has_sig": false,
"md5_digest": "a9a4860575b22bacee41bfcc2ff907ab",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3463402,
"upload_time": "2019-03-26T10:43:41",
"url": "https://files.pythonhosted.org/packages/31/fa/0ac971b3f2593d7e09b6f375f930f8ab0001c078cfbf34b36c034b1629c1/eodag-0.7.2.tar.gz"
}
],
"0.7.3": [
{
"comment_text": "",
"digests": {
"md5": "718b779d742ea759e3be284f42b17f35",
"sha256": "8c1a0cf129bcc0d62e9ce2c16dbd75012fc320c5cdabdf22115b95bb9acd9ada"
},
"downloads": -1,
"filename": "eodag-0.7.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "718b779d742ea759e3be284f42b17f35",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 121754,
"upload_time": "2019-04-16T13:38:13",
"url": "https://files.pythonhosted.org/packages/1f/d7/f853e336f066a4b408e4ac4b696a39cb157ee5488fe0ed41405fc08b7e1c/eodag-0.7.3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "0c52f2f29201e13bf6a84fadea10d4b0",
"sha256": "fa62d032c21237efebbae505bd7fe22a2b7d85c62e32b09a1232098662391cc4"
},
"downloads": -1,
"filename": "eodag-0.7.3.tar.gz",
"has_sig": false,
"md5_digest": "0c52f2f29201e13bf6a84fadea10d4b0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3467242,
"upload_time": "2019-04-16T13:38:14",
"url": "https://files.pythonhosted.org/packages/e9/94/6d6ff8ae60d4d301eac782365f1a83a5bad800693207f1cb5716690e7faf/eodag-0.7.3.tar.gz"
}
],
"1.0": [
{
"comment_text": "",
"digests": {
"md5": "51ee48143d27166d7050a5a859f4ea6b",
"sha256": "14c45da383c13dc9fba6698e86c4ae4a9e19d74c1d213c2b2ccf0b2080bc622d"
},
"downloads": -1,
"filename": "eodag-1.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "51ee48143d27166d7050a5a859f4ea6b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 132647,
"upload_time": "2019-04-29T12:54:29",
"url": "https://files.pythonhosted.org/packages/2e/4c/0d05d422a8b0a4de5b24fd11793eac1df933b74760615d0a7bbcd029f10c/eodag-1.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e8b036adc18a7a50293394e3463de915",
"sha256": "bab59e86c221637aac94ce2156d7a691de3cd3846874bfc8d5a56f8630847168"
},
"downloads": -1,
"filename": "eodag-1.0.tar.gz",
"has_sig": false,
"md5_digest": "e8b036adc18a7a50293394e3463de915",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3367531,
"upload_time": "2019-04-29T12:54:35",
"url": "https://files.pythonhosted.org/packages/82/9c/2a434708b0c0ecf52b60713292c57547ffac06f90a227ad1606f3ff313a8/eodag-1.0.tar.gz"
}
],
"1.0.1": [
{
"comment_text": "",
"digests": {
"md5": "9cd39d6697a2f5fae557a9ad031379bf",
"sha256": "e1c86b9f5589a03dd4957822d91e8380e41a7fd71e3b4776a546fc4c80aa2a6d"
},
"downloads": -1,
"filename": "eodag-1.0.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "9cd39d6697a2f5fae557a9ad031379bf",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 132736,
"upload_time": "2019-04-30T09:14:29",
"url": "https://files.pythonhosted.org/packages/9a/a7/4c5cd3e327d880a79c410ba7c52b267518795793b3b34350839662cb7a4b/eodag-1.0.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "0d8636905259677917bbba2129f66168",
"sha256": "bb55f9a5f81712a8a7439ebd406204af7d7f627e79c33780983c7e8d9bb65d1b"
},
"downloads": -1,
"filename": "eodag-1.0.1.tar.gz",
"has_sig": false,
"md5_digest": "0d8636905259677917bbba2129f66168",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3367897,
"upload_time": "2019-04-30T09:14:36",
"url": "https://files.pythonhosted.org/packages/df/2b/75ed4ebbcf97717b5529ba0c6138f36e19a0b9e2275dff26a61ca89f8b77/eodag-1.0.1.tar.gz"
}
],
"1.1.0": [
{
"comment_text": "",
"digests": {
"md5": "df0a297dc88112739ae6ff691b3a5d82",
"sha256": "af21c7b84da3abd7c32dd2254afc1d51046936021176ad301cd517d1df9a105e"
},
"downloads": -1,
"filename": "eodag-1.1.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "df0a297dc88112739ae6ff691b3a5d82",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 132999,
"upload_time": "2019-07-23T08:29:14",
"url": "https://files.pythonhosted.org/packages/41/36/12e6059184383853a4fbaadcc0ba1895ad748cbf985dddea30a1c76af6b0/eodag-1.1.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "51d5f6278ce981d261e02077c48f9c40",
"sha256": "3f2f327d1942c9fb8fbdfe0a46c736a98ccfcbd04d76f41e4cae0581a883677b"
},
"downloads": -1,
"filename": "eodag-1.1.0.tar.gz",
"has_sig": false,
"md5_digest": "51d5f6278ce981d261e02077c48f9c40",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3369771,
"upload_time": "2019-07-23T08:29:15",
"url": "https://files.pythonhosted.org/packages/83/73/b405cb16488f53f7a41436bf97f17a226e22e47b2f7a78270e56ce1025ad/eodag-1.1.0.tar.gz"
}
],
"1.1.1": [
{
"comment_text": "",
"digests": {
"md5": "3f5ed05dc62ad277c69bbfe19c71f70e",
"sha256": "cc4ac1360f4bed38ec86db7c08da8b09eac085006db2b26f6a9b6165ddaeb397"
},
"downloads": -1,
"filename": "eodag-1.1.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "3f5ed05dc62ad277c69bbfe19c71f70e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 133040,
"upload_time": "2019-07-26T15:12:40",
"url": "https://files.pythonhosted.org/packages/1f/11/8a272c04f43fcfcf2a706fe3333eae616db50e7581f1d6c4ea898f59c2de/eodag-1.1.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "c508089ab963789d0b478f6f15b1ede6",
"sha256": "e9b88d75faa80ecc75c44106fb384a5ec3cc048a1ac2a28a2953e4b9caa508ce"
},
"downloads": -1,
"filename": "eodag-1.1.1.tar.gz",
"has_sig": false,
"md5_digest": "c508089ab963789d0b478f6f15b1ede6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3367473,
"upload_time": "2019-07-26T15:12:42",
"url": "https://files.pythonhosted.org/packages/93/11/5b3e643fd79b4b3f0bf6a5972680afa8b2ea05796ca5f6d8b11ebd7c5d61/eodag-1.1.1.tar.gz"
}
],
"1.1.2": [
{
"comment_text": "",
"digests": {
"md5": "a806effb0d11746479cc3ea17bacc5a5",
"sha256": "b73faeb91ea42067d795e3b09ce2ec6fcc4b3d161eac719aea685a6d3f90832e"
},
"downloads": -1,
"filename": "eodag-1.1.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a806effb0d11746479cc3ea17bacc5a5",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 133038,
"upload_time": "2019-08-05T09:09:40",
"url": "https://files.pythonhosted.org/packages/da/8c/2d6158ac6b14d84767bef85b6cd4e34f18da06bc3b7df780c1df4339d23d/eodag-1.1.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ce0ab460f776a02e2e0b75afff93b59b",
"sha256": "28a9d4ab9f5d41f4ffa5012d9b80110dcfa57e1a2d51b6c0853dcf7471ebab08"
},
"downloads": -1,
"filename": "eodag-1.1.2.tar.gz",
"has_sig": false,
"md5_digest": "ce0ab460f776a02e2e0b75afff93b59b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3369020,
"upload_time": "2019-08-05T09:09:42",
"url": "https://files.pythonhosted.org/packages/18/75/96274fe13e43888087594470b1502373699dde860d4a58b33f0159f0fd3a/eodag-1.1.2.tar.gz"
}
],
"1.1.3": [
{
"comment_text": "",
"digests": {
"md5": "445f78a51519d5fc702467bce2bd66d7",
"sha256": "55e98b8a63153660bd1195b8a9bf64001659969629034b820dfbf010d482a9da"
},
"downloads": -1,
"filename": "eodag-1.1.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "445f78a51519d5fc702467bce2bd66d7",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 133038,
"upload_time": "2019-08-05T12:58:35",
"url": "https://files.pythonhosted.org/packages/d1/f9/c4bfbaa9515448957bfddc4dd2bf18412568b75d01f398ca3002af85ff72/eodag-1.1.3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "14edfd0078c3dbb923f05a42f82add6a",
"sha256": "3b5d6579bd11bfaf2a1bc5d371cd1ae5c68411e8942f084f81a7410e6f306305"
},
"downloads": -1,
"filename": "eodag-1.1.3.tar.gz",
"has_sig": false,
"md5_digest": "14edfd0078c3dbb923f05a42f82add6a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3364807,
"upload_time": "2019-08-05T12:58:37",
"url": "https://files.pythonhosted.org/packages/a9/18/a8a40aa7c4910e23debcaf057f2251e146d8659701c03883dc1db9030f22/eodag-1.1.3.tar.gz"
}
],
"1.2.0": [
{
"comment_text": "",
"digests": {
"md5": "e709925388d63d412d01b6fc84649158",
"sha256": "60fec6716bdfbf9e32dff11aa74d594f06f9ffc8e1373ab04672538bbc531caa"
},
"downloads": -1,
"filename": "eodag-1.2.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "e709925388d63d412d01b6fc84649158",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 133358,
"upload_time": "2019-08-22T10:07:10",
"url": "https://files.pythonhosted.org/packages/b8/38/6be9339f7c53e5c3fc293b61589cc0b8064560b9da2891abed5796dbe058/eodag-1.2.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "b5cb28206327db88be0fdc8f0394248b",
"sha256": "6dd45ba59d9e691fefbc98e09f412853c0d969ae008af3502b83614cf80ba131"
},
"downloads": -1,
"filename": "eodag-1.2.0.tar.gz",
"has_sig": false,
"md5_digest": "b5cb28206327db88be0fdc8f0394248b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3368073,
"upload_time": "2019-08-22T10:07:12",
"url": "https://files.pythonhosted.org/packages/a2/82/fc528756b3c89911905a5f2afb82c1dcc65ed7599b71539bf19b5d19ee43/eodag-1.2.0.tar.gz"
}
],
"1.2.1": [
{
"comment_text": "",
"digests": {
"md5": "e6e2d251411bfa612902e10562d45809",
"sha256": "fbd4c692a9d45f21076a669e3995b9f660e9ad04d744d3d8371d059a76d3405d"
},
"downloads": -1,
"filename": "eodag-1.2.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "e6e2d251411bfa612902e10562d45809",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 133482,
"upload_time": "2019-08-23T13:37:13",
"url": "https://files.pythonhosted.org/packages/c6/e2/4735fd7ca0421e057b1abab8880fdacad4eb1fee4ac528448246d4467d23/eodag-1.2.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "401cdd32857a1110a7c33ddc14dc01dd",
"sha256": "8a462f41c68dd547dd800a5644917ed5d8473b6414cc93c541a6016bf6a444d1"
},
"downloads": -1,
"filename": "eodag-1.2.1.tar.gz",
"has_sig": false,
"md5_digest": "401cdd32857a1110a7c33ddc14dc01dd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3370298,
"upload_time": "2019-08-23T13:37:15",
"url": "https://files.pythonhosted.org/packages/d2/43/c7a5ee4741b19d9c1010bea6c3b42cea4ac275aa280b07e4fd52f5029d99/eodag-1.2.1.tar.gz"
}
],
"1.2.2": [
{
"comment_text": "",
"digests": {
"md5": "c1973b1a7f0ebd4fa25d9f2d0f61058a",
"sha256": "4359c0f49b8914b2501902fd8e6d826fa24310c9a5782424bac85ab1a7637503"
},
"downloads": -1,
"filename": "eodag-1.2.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c1973b1a7f0ebd4fa25d9f2d0f61058a",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 133482,
"upload_time": "2019-08-23T14:37:27",
"url": "https://files.pythonhosted.org/packages/49/09/a731ac63b99fbd28bce5265e4f5bb661a3611410046906aa4e92eb03b9b3/eodag-1.2.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "77af41dcd7a5d9cfc6203fda7cc46940",
"sha256": "771d255d0f78be27e4ec7323ca5d885e5352546c4072d3af30775360caab5687"
},
"downloads": -1,
"filename": "eodag-1.2.2.tar.gz",
"has_sig": false,
"md5_digest": "77af41dcd7a5d9cfc6203fda7cc46940",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3368011,
"upload_time": "2019-08-23T14:37:29",
"url": "https://files.pythonhosted.org/packages/6a/11/cf994a037d2c2e1ff553db31d935acc9288e13a67a19bf1191383f8e1cd5/eodag-1.2.2.tar.gz"
}
],
"1.2.3": [
{
"comment_text": "",
"digests": {
"md5": "5fee46f208dfdacd2a45df8c5ba1141d",
"sha256": "0ca816183b22aaaa664904f7cf9b19e1349519c0c835e965d331d839f6eaa177"
},
"downloads": -1,
"filename": "eodag-1.2.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "5fee46f208dfdacd2a45df8c5ba1141d",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 133438,
"upload_time": "2019-08-26T07:43:07",
"url": "https://files.pythonhosted.org/packages/c0/8a/d50c84ae3095f4f320442f643e3b506daf1ddb8902eb3089aafe18653997/eodag-1.2.3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ecb02b44104b4cccab34d6925083a071",
"sha256": "1190468055c72167c97721c111f72986918d5ebddb9966fa739dd0dd3c751325"
},
"downloads": -1,
"filename": "eodag-1.2.3.tar.gz",
"has_sig": false,
"md5_digest": "ecb02b44104b4cccab34d6925083a071",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3365566,
"upload_time": "2019-08-26T07:43:10",
"url": "https://files.pythonhosted.org/packages/88/c7/5ea5693694f3f26c679461e8333b52468633259f4a94f70e5ba4369d1939/eodag-1.2.3.tar.gz"
}
],
"1.3.0": [
{
"comment_text": "",
"digests": {
"md5": "ed6698390061ab8d09a4027f5ae7f512",
"sha256": "6d9a92ed52d6640aa8cabe07785e28cbcef8f530078e34b917a659da62ca0262"
},
"downloads": -1,
"filename": "eodag-1.3.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ed6698390061ab8d09a4027f5ae7f512",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 133556,
"upload_time": "2019-09-06T15:03:32",
"url": "https://files.pythonhosted.org/packages/1c/c8/362a2533ece809f28d9a34af0d2af425887b18dc5515cc74131c0992143f/eodag-1.3.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "b87dac808b02021c977ed0a76abfe550",
"sha256": "4d64b0490c756da4e37e6af2dff6731197a0435791787126ab9c0873f6128dcb"
},
"downloads": -1,
"filename": "eodag-1.3.0.tar.gz",
"has_sig": false,
"md5_digest": "b87dac808b02021c977ed0a76abfe550",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3371117,
"upload_time": "2019-09-06T15:03:35",
"url": "https://files.pythonhosted.org/packages/20/5c/c25b5a55f2eadf1c9e877b0db23f7c4ce7c2c61ebb0b1836053e45f76c4f/eodag-1.3.0.tar.gz"
}
],
"1.3.1": [
{
"comment_text": "",
"digests": {
"md5": "c3f5a280733f7e6c1ac6939abb668541",
"sha256": "27754f8b114fedfa205d0c6aafd15c4bd947aee27e47fa14b2e8d01d68b177fe"
},
"downloads": -1,
"filename": "eodag-1.3.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c3f5a280733f7e6c1ac6939abb668541",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 133577,
"upload_time": "2019-09-27T09:02:31",
"url": "https://files.pythonhosted.org/packages/81/c3/addd03bf56695655c775ee979b4d76d6d36041b660817a75768dcd39fe8c/eodag-1.3.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "7eef95d412c0bd0e4587f81845ce03a1",
"sha256": "decffa4ecab63d2a8b17c62e5bd4d96accd446d6665a8909daedc618e8b1cd75"
},
"downloads": -1,
"filename": "eodag-1.3.1.tar.gz",
"has_sig": false,
"md5_digest": "7eef95d412c0bd0e4587f81845ce03a1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3463694,
"upload_time": "2019-09-27T09:02:33",
"url": "https://files.pythonhosted.org/packages/63/d2/8d160fa1310715765f7614023ef5bd8689f816d8ac0cab8443c45339a1c2/eodag-1.3.1.tar.gz"
}
],
"1.3.2": [
{
"comment_text": "",
"digests": {
"md5": "a6e0039b94b77b734f995c6b16b7d17f",
"sha256": "84561a4abd5375722b365bc40e5795f31bcafe06a43607ed5da3e8ce6dbd9ab6"
},
"downloads": -1,
"filename": "eodag-1.3.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a6e0039b94b77b734f995c6b16b7d17f",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 133584,
"upload_time": "2019-09-27T13:17:50",
"url": "https://files.pythonhosted.org/packages/fc/9c/12c176a3c0961234bba4dceb5c62c92fff46770dc599b2dde156b74d3338/eodag-1.3.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "69a4c5a0ed85e8e9c0d176d51708a50a",
"sha256": "dbeb739c1d34a6eda3984b1e851618a8eb9e90784b90e29f757c09aba678fd28"
},
"downloads": -1,
"filename": "eodag-1.3.2.tar.gz",
"has_sig": false,
"md5_digest": "69a4c5a0ed85e8e9c0d176d51708a50a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3464877,
"upload_time": "2019-09-27T13:17:52",
"url": "https://files.pythonhosted.org/packages/d3/10/f48eb3307c4880415512dde4d08a4734de3294c118036eefd2e0c064a3fa/eodag-1.3.2.tar.gz"
}
],
"1.3.3": [
{
"comment_text": "",
"digests": {
"md5": "59105acdde4844816315f647d570a569",
"sha256": "3dc19e017f0d8aef89e80ee3d98b6c342db9eb947a48e217a5bf1aad6eb93b9b"
},
"downloads": -1,
"filename": "eodag-1.3.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "59105acdde4844816315f647d570a569",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 133590,
"upload_time": "2019-10-11T10:53:22",
"url": "https://files.pythonhosted.org/packages/6d/f2/0c0eb2fa2d81830d1d1c3661f76362d5d24bee8a07748f8082724eaabd62/eodag-1.3.3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ad8d4a20b996c0b6661c7f10d7b6425e",
"sha256": "e3e5d87c1904661a49a2957d7bd904d6de9f0f2706c4770af8c1745990aa34fa"
},
"downloads": -1,
"filename": "eodag-1.3.3.tar.gz",
"has_sig": false,
"md5_digest": "ad8d4a20b996c0b6661c7f10d7b6425e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3466365,
"upload_time": "2019-10-11T10:53:25",
"url": "https://files.pythonhosted.org/packages/fc/7e/b3e90324beb81ff334fe4e3b0a791635c2f425eb7bd2f1b0c6bdee28c8b8/eodag-1.3.3.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "59105acdde4844816315f647d570a569",
"sha256": "3dc19e017f0d8aef89e80ee3d98b6c342db9eb947a48e217a5bf1aad6eb93b9b"
},
"downloads": -1,
"filename": "eodag-1.3.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "59105acdde4844816315f647d570a569",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 133590,
"upload_time": "2019-10-11T10:53:22",
"url": "https://files.pythonhosted.org/packages/6d/f2/0c0eb2fa2d81830d1d1c3661f76362d5d24bee8a07748f8082724eaabd62/eodag-1.3.3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ad8d4a20b996c0b6661c7f10d7b6425e",
"sha256": "e3e5d87c1904661a49a2957d7bd904d6de9f0f2706c4770af8c1745990aa34fa"
},
"downloads": -1,
"filename": "eodag-1.3.3.tar.gz",
"has_sig": false,
"md5_digest": "ad8d4a20b996c0b6661c7f10d7b6425e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3466365,
"upload_time": "2019-10-11T10:53:25",
"url": "https://files.pythonhosted.org/packages/fc/7e/b3e90324beb81ff334fe4e3b0a791635c2f425eb7bd2f1b0c6bdee28c8b8/eodag-1.3.3.tar.gz"
}
]
}