{ "info": { "author": "leucothia", "author_email": "devops@oceanprotocol.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Natural Language :: English", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "[![banner](https://raw.githubusercontent.com/oceanprotocol/art/master/github/repo-banner%402x.png)](https://oceanprotocol.com)\n\n# Aquarius\n\n> \ud83d\udc0b Aquarius provides an off-chain database store for metadata about data assets.\n> It's part of the [Ocean Protocol](https://oceanprotocol.com) software stack.\n\nNote: Aquarius was formerly known as the Provider.\n\n___\"Aquarius is a constellation of the zodiac, situated between Capricornus and Pisces. Its name is Latin for \"water-carrier\" or \"cup-carrier. Aquarius is one of the oldest of the recognized constellations along the zodiac (the Sun's apparent path).\"___\n\n[![Docker Build Status](https://img.shields.io/docker/build/oceanprotocol/aquarius.svg)](https://hub.docker.com/r/oceanprotocol/aquarius/) [![Travis (.com)](https://img.shields.io/travis/com/oceanprotocol/aquarius.svg)](https://travis-ci.com/oceanprotocol/aquarius) [![Codacy coverage](https://img.shields.io/codacy/coverage/10c8fddd5e8547c29de4906410a16ae7.svg)](https://app.codacy.com/project/ocean-protocol/aquarius/dashboard) [![PyPI](https://img.shields.io/pypi/v/ocean-aquarius.svg)](https://pypi.org/project/ocean-aquarius/) [![GitHub contributors](https://img.shields.io/github/contributors/oceanprotocol/aquarius.svg)](https://github.com/oceanprotocol/aquarius/graphs/contributors)\n\n---\n\n**\ud83d\udc32\ud83e\udd91 THERE BE DRAGONS AND SQUIDS. This is in alpha state and you can expect running into problems. If you run into them, please open up [a new issue](https://github.com/oceanprotocol/aquarius/issues). \ud83e\udd91\ud83d\udc32**\n\n---\n\n## For Aquarius Operators\n\nIf you're developing a marketplace, you'll want to run Aquarius and several other components locally, and the easiest way to do that is to use Barge. See the instructions in [the Barge repository](https://github.com/oceanprotocol/barge).\n\n## For Aquarius API Users\n\nThe Ocean Protocol docs site has [documentation about the Aquarius API](https://docs.oceanprotocol.com/references/aquarius/). Note that it shows the docs for the version currently deployed with the Nile Testnet. To get documentation for other versions, there is a \"past versions\" link at the top of the page.\n\nIf you have Aquarius running locally, you can find API documentation at\n[http://localhost:5000/api/v1/docs](http://localhost:5000/api/v1/docs) or maybe\n[http://0.0.0.0:5000/api/v1/docs](http://0.0.0.0:5000/api/v1/docs).\n\nTip 1: If that doesn't work, then try `https`.\n\nTip 2: If your browser shows the Swagger header across the top but says \"Failed to load spec.\" then we found that, in Chrome, if we went to `chrome://flags/#allow-insecure-localhost` and toggled it to Enabled, then relaunched Chrome, it worked.\n\nIf you want to know more about the ontology of the metadata, you can find all the information in\n[OEP-8](https://github.com/oceanprotocol/OEPs/tree/master/8).\n\n## For Aquarius Developers\n\n### General Ocean Dev Docs\n\nFor information about Ocean's Python code style and related \"meta\" developer docs, see [the oceanprotocol/dev-ocean repository](https://github.com/oceanprotocol/dev-ocean).\n\n### Running Locally, for Dev and Test\n\nFirst, clone this repository:\n\n```bash\ngit clone git@github.com:oceanprotocol/aquarius.git\ncd aquarius/\n```\n\nThen run mongodb database that is a requirement for Aquarius. MongoDB can be installed directly using instructions from [official documentation](https://docs.mongodb.com/manual/installation/). Or if you have `docker` installed, you can run:\n\n```bash\ndocker run -d -p 27017:27017 mongo\n```\n\nNote that it runs MongoDB but the Aquarius can also work with BigchainDB or Elasticsearch. If you want to run ElasticSearch or BigchainDB, update the file `config.ini` and run the Database engine with your preferred method.\n\nThen install Aquarius's OS-level requirements:\n\n```bash\nsudo apt update\nsudo apt install python3-dev python3.7-dev libssl-dev\n```\n\n(Note: At the time of writing, `python3-dev` was for Python 3.6. `python3.7-dev` is needed if you want to test against Python 3.7 locally. BigchainDB needs `libssl-dev`.)\n\nBefore installing Aquarius's Python package requirements, you should create and activate a virtualenv (or equivalent).\n\nThe most simple way to start is:\n\n```bash\npip install -r requirements.txt\nexport FLASK_APP=aquarius/run.py\nexport CONFIG_FILE=config.ini\nflask run\n```\n\nThat will use HTTP (i.e. not SSL/TLS).\n\nThe proper way to run the Flask application is using an application server such as Gunicorn. This allow you to run using SSL/TLS.\nYou can generate some certificates for testing by doing:\n\n```bash\nopenssl req -x509 -newkey rsa:4096 -nodes -out cert.pem -keyout key.pem -days 365\n```\n\nand when it asks for the Common Name (CN), answer `localhost`\n\nThen edit the config file `config.ini` so that:\n\n```yaml\naquarius.url = http://localhost:5000\n```\n\nThen execute this command:\n\n```bash\ngunicorn --certfile cert.pem --keyfile key.pem -b 0.0.0.0:5000 -w 1 aquarius.run:app\n```\n\n### Configuration\n\nYou can pass the configuration using the CONFIG_FILE environment variable (recommended) or locating your configuration in config.ini file.\n\nIn the configuration there are now two sections:\n\n- oceandb: Contains different values to connect with oceandb. You can find more information about how to use OceanDB [here](https://github.com/oceanprotocol/oceandb-driver-interface).\n- resources: In this section we are showing the url in which the aquarius is going to be deployed.\n\n```yaml\n[resources]\naquarius.url = http://localhost:5000\n```\n\n### Testing\n\nAutomatic tests are set up via Travis, executing `tox`.\nOur tests use the pytest framework.\n\n### New Version\n\nThe `bumpversion.sh` script helps bump the project version. You can execute the script using `{major|minor|patch}` as first argument, to bump the version accordingly.\n\n## License\n\nCopyright 2018 Ocean Protocol Foundation Ltd.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/oceanprotocol/aquarius", "keywords": "ocean-aquarius", "license": "Apache Software License 2.0", "maintainer": "", "maintainer_email": "", "name": "ocean-aquarius", "package_url": "https://pypi.org/project/ocean-aquarius/", "platform": "", "project_url": "https://pypi.org/project/ocean-aquarius/", "project_urls": { "Homepage": "https://github.com/oceanprotocol/aquarius" }, "release_url": "https://pypi.org/project/ocean-aquarius/0.4.1/", "requires_dist": [ "coloredlogs (==10.0)", "Flask (==1.0.2)", "Flask-Cors (==3.0.6)", "flask-swagger (==0.2.14)", "flask-swagger-ui (==3.20.9)", "Jinja2 (>=2.10.1)", "requests (>=2.21.0)", "gunicorn (==19.9.0)", "oceandb-driver-interface (==0.2.0)", "oceandb-mongodb-driver (==0.1.10)", "oceandb-elasticsearch-driver (==0.2.0)", "PyYAML (==5.1)", "pytz (==2018.5)", "plecos (==0.7.9)", "bumpversion (==0.5.3) ; extra == 'dev'", "pkginfo (==1.4.2) ; extra == 'dev'", "twine (==1.11.0) ; extra == 'dev'", "watchdog (==0.8.3) ; extra == 'dev'", "codacy-coverage (==1.3.11) ; extra == 'dev'", "coverage (==4.5.1) ; extra == 'dev'", "mccabe (==0.6.1) ; extra == 'dev'", "pylint (==2.2.2) ; extra == 'dev'", "pytest (==3.4.2) ; extra == 'dev'", "tox (==3.2.1) ; extra == 'dev'", "codacy-coverage (==1.3.11) ; extra == 'test'", "coverage (==4.5.1) ; extra == 'test'", "mccabe (==0.6.1) ; extra == 'test'", "pylint (==2.2.2) ; extra == 'test'", "pytest (==3.4.2) ; extra == 'test'", "tox (==3.2.1) ; extra == 'test'" ], "requires_python": "", "summary": "\ud83d\udc33 Ocean aquarius.", "version": "0.4.1" }, "last_serial": 5687336, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "52b31a2fa184bc40dc581265bd60ea47", "sha256": "32bfe07770c65a7ede636000bf128bb1f716688921008c7c746bf017f4861f19" }, "downloads": -1, "filename": "ocean_aquarius-0.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "52b31a2fa184bc40dc581265bd60ea47", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14858, "upload_time": "2018-10-24T09:52:04", "url": "https://files.pythonhosted.org/packages/9f/29/8e936893e4a706b8f26833272477eca8c2d13c12faafc6ee716b8ae4b2ed/ocean_aquarius-0.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c003670eea9f6097fe4902bd88751a59", "sha256": "3ce56ad31796b78d4ef794b3c4fb2c7bb34bdcfb02b28fb34e27ff3e553f4fd9" }, "downloads": -1, "filename": "ocean-aquarius-0.0.1.tar.gz", "has_sig": false, "md5_digest": "c003670eea9f6097fe4902bd88751a59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14543, "upload_time": "2018-10-24T09:52:05", "url": "https://files.pythonhosted.org/packages/73/d0/81243814d36ac429bb39c0b0ba6fefaf75b76dde8503f4132a54f7eeec18/ocean-aquarius-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "c0a7f55af646a40cad9ad788aed64aec", "sha256": "517821346555d4c453f0c392ba5eb7be34d7bbe48c3f1febc0a0c813d26d0f27" }, "downloads": -1, "filename": "ocean_aquarius-0.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c0a7f55af646a40cad9ad788aed64aec", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14821, "upload_time": "2018-10-30T14:58:06", "url": "https://files.pythonhosted.org/packages/b4/c6/0f91ef8ba04ed1d4bd90d9fe4cce9c56460e83bc752b02cff125540fc0f1/ocean_aquarius-0.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8202801b7545044f9f7e5b14c309b30a", "sha256": "35f3837add923cb3a163886e7666f419a6f9123af8983fa6c0054339302775e1" }, "downloads": -1, "filename": "ocean-aquarius-0.0.2.tar.gz", "has_sig": false, "md5_digest": "8202801b7545044f9f7e5b14c309b30a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14738, "upload_time": "2018-10-30T14:58:07", "url": "https://files.pythonhosted.org/packages/14/a9/89e52949f7e33c256f1109ae4690092b74d95434b2e3695279832562b8a4/ocean-aquarius-0.0.2.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "eac3e40acaa878dd3eefaf84816633c5", "sha256": "2dfc64f5b8800002d1d20d56ff501238f2dd6fbb8a83d85b8ff77b4fa923e0aa" }, "downloads": -1, "filename": "ocean_aquarius-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "eac3e40acaa878dd3eefaf84816633c5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14054, "upload_time": "2018-11-05T13:32:31", "url": "https://files.pythonhosted.org/packages/92/4b/754e126a359dbed69a8c166265f75e5c83b5235d7e335885025deec318eb/ocean_aquarius-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "faf79808d45a092dedd3f44de82f9634", "sha256": "4f2c062ef87b3af88a2a1085c9b681ab7b38d7a4a4da3dc7859ae64ef9dbf5f6" }, "downloads": -1, "filename": "ocean-aquarius-0.1.2.tar.gz", "has_sig": false, "md5_digest": "faf79808d45a092dedd3f44de82f9634", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13413, "upload_time": "2018-11-05T13:32:33", "url": "https://files.pythonhosted.org/packages/8b/2f/11664f104d3504b4c86bc4ed3d292a42d1d434e00c82d22bdc37e510466a/ocean-aquarius-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "2afacbcb4a16b6ab2986bd1e4099ac48", "sha256": "4fd6090b7f31d621e7f27e8c947c4e7218a6cbc79d94304d12c4bd07c0d35c97" }, "downloads": -1, "filename": "ocean_aquarius-0.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2afacbcb4a16b6ab2986bd1e4099ac48", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14454, "upload_time": "2018-11-14T14:51:48", "url": "https://files.pythonhosted.org/packages/35/a1/a24915839c5acb712d897a4ddfb8977c2df1ae59f6188f55900283afd6b7/ocean_aquarius-0.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d8ee99f2f5196d2c4051eb05ed4806cc", "sha256": "b0c75beb5d5a27198fb42bc71ec8862f75e3bd432aff54c8d9c878f8335656bb" }, "downloads": -1, "filename": "ocean-aquarius-0.1.3.tar.gz", "has_sig": false, "md5_digest": "d8ee99f2f5196d2c4051eb05ed4806cc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17577, "upload_time": "2018-11-14T14:51:50", "url": "https://files.pythonhosted.org/packages/4a/2e/33fb65549df9f6a7c4cf2cc478a94ba27db1cfd5b763e552527afa78b897/ocean-aquarius-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "4c48001b50b13126e4200f2c409847a5", "sha256": "c8275d93566a71fb06b6f713d88a463d577dec7a8b32b23e5c36e11de0adbd94" }, "downloads": -1, "filename": "ocean_aquarius-0.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4c48001b50b13126e4200f2c409847a5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14476, "upload_time": "2018-11-16T10:44:00", "url": "https://files.pythonhosted.org/packages/dc/ce/de140cdfaac387ffe8df4de11708c40a4c6086380a47f16bcbf4db25a9f4/ocean_aquarius-0.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0fae5271a1b3ca3c88b72960798c36cf", "sha256": "c04b3b19d84fd739a6c8e233eee8bb270934537edc5aaa9223c1f70938945223" }, "downloads": -1, "filename": "ocean-aquarius-0.1.4.tar.gz", "has_sig": false, "md5_digest": "0fae5271a1b3ca3c88b72960798c36cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17598, "upload_time": "2018-11-16T10:44:01", "url": "https://files.pythonhosted.org/packages/c9/a0/54bc973b57f774d39340aefd29591c0f79493d1f2ae2604a7507d795ce7a/ocean-aquarius-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "c193c6292a6b5b94440317a6444dec60", "sha256": "f385a59616341cc46899742ce9f2267ddf9b5d867f83541c2220d6e368381ae0" }, "downloads": -1, "filename": "ocean_aquarius-0.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c193c6292a6b5b94440317a6444dec60", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14923, "upload_time": "2019-01-17T10:14:19", "url": "https://files.pythonhosted.org/packages/fa/25/743e7948bc374e9bdea072b46dc3fe366032b51e2ce7549c3bf1b5467378/ocean_aquarius-0.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "859d51db72e9e1aac0d898a339f5f93d", "sha256": "6291c14f35326a5cc9cf28c37f1894cc6705c56feb983e43ddc3fc9b7a5af58e" }, "downloads": -1, "filename": "ocean-aquarius-0.1.5.tar.gz", "has_sig": false, "md5_digest": "859d51db72e9e1aac0d898a339f5f93d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17961, "upload_time": "2019-01-17T10:14:21", "url": "https://files.pythonhosted.org/packages/3b/81/1af3ef57277f8484cdd3d56160bbcca9febf34c0c7ba2a02c2c44029801c/ocean-aquarius-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "c118fab4e1021b36981df96bc655c866", "sha256": "a7253f50f342a00206549529babacff26585206b55fd80d10bb925c59d09853d" }, "downloads": -1, "filename": "ocean_aquarius-0.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c118fab4e1021b36981df96bc655c866", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15263, "upload_time": "2019-01-29T08:46:49", "url": "https://files.pythonhosted.org/packages/10/a8/558f5c236f11221417e918f8baa75ab170caef4917e2ba662072cd5f1955/ocean_aquarius-0.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "899a742d453a790b75b797cc943201b4", "sha256": "1381428ac034cf2ff720dbbbdb3f5fa36ceff97932f38a2bec23eec56fbe2356" }, "downloads": -1, "filename": "ocean-aquarius-0.1.6.tar.gz", "has_sig": false, "md5_digest": "899a742d453a790b75b797cc943201b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19887, "upload_time": "2019-01-29T08:46:50", "url": "https://files.pythonhosted.org/packages/7a/79/6dde30cfe721d1a7a5e9bba3b5880799d1326f0d513a5cd629ea5f73ca43/ocean-aquarius-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "c0e87a7ba776e5c85d621f1464d89284", "sha256": "2e551c56b524a313e7866151aa34006ca6024bde54dc5233d9b6ec4bad0309db" }, "downloads": -1, "filename": "ocean_aquarius-0.1.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c0e87a7ba776e5c85d621f1464d89284", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15081, "upload_time": "2019-01-30T11:02:38", "url": "https://files.pythonhosted.org/packages/94/4d/f98eb213042ac7d065e436b7866a9c26cf383cb1958bd9eb6e2c8ab1e582/ocean_aquarius-0.1.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ee5ad612b0a22c9c151258d7c046465c", "sha256": "c84917a15232cc9e1cc3117b338909b52234b419f623bb522e6be11f6b12b59c" }, "downloads": -1, "filename": "ocean-aquarius-0.1.7.tar.gz", "has_sig": false, "md5_digest": "ee5ad612b0a22c9c151258d7c046465c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19491, "upload_time": "2019-01-30T11:02:39", "url": "https://files.pythonhosted.org/packages/dd/49/9729aedcc1ebf18cefedd099a276e8060062b3f530c5761598b9ea36d78c/ocean-aquarius-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "6dfed4bf1d8829f9103007f22c0af6ea", "sha256": "a4ef3d1ed1576c0a2850fbfb8917fdddb207d01616b3aa4da55d17b5fcd2e6f9" }, "downloads": -1, "filename": "ocean_aquarius-0.1.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6dfed4bf1d8829f9103007f22c0af6ea", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15056, "upload_time": "2019-02-01T09:09:11", "url": "https://files.pythonhosted.org/packages/4f/89/83ce43a3d72905f1a128208ae9e0a9984692821497fb28f6b0ce552e0af4/ocean_aquarius-0.1.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c9619b3dd51d39183056a8b0695d38a0", "sha256": "47d40c1bb468d6dec8dfeefa062b93e5855c87b5d9560e929883c3f7068339ea" }, "downloads": -1, "filename": "ocean-aquarius-0.1.8.tar.gz", "has_sig": false, "md5_digest": "c9619b3dd51d39183056a8b0695d38a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19542, "upload_time": "2019-02-01T09:09:12", "url": "https://files.pythonhosted.org/packages/16/38/c6cbdd0f03f5c9080b1e82a379b28f351290ac731182581f2ca1a10a9487/ocean-aquarius-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "8e8903a490e32f56f0e21ab9ec22349f", "sha256": "f335d7dd033e7b75f4999f00115710cc630bea77defe42585916677b013b4f9c" }, "downloads": -1, "filename": "ocean_aquarius-0.1.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8e8903a490e32f56f0e21ab9ec22349f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15278, "upload_time": "2019-02-21T13:36:19", "url": "https://files.pythonhosted.org/packages/da/60/05a34d18f9378125ae6e502d6fac89e15adafd14526554e8a2cefc9a0886/ocean_aquarius-0.1.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1ffac900db88a95b03751c5e6c2ceca5", "sha256": "3fb36da0b93da29e0651037d7543d54b8223f91e4b711753fb867b6ed05dafba" }, "downloads": -1, "filename": "ocean-aquarius-0.1.9.tar.gz", "has_sig": false, "md5_digest": "1ffac900db88a95b03751c5e6c2ceca5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20440, "upload_time": "2019-02-21T13:36:20", "url": "https://files.pythonhosted.org/packages/5b/94/19476a0a19fac73d3b406111d1cfc54a738ec48a97c4b20880a9dde3ad65/ocean-aquarius-0.1.9.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "e916346f62f67f4e4832ecfa8a048d3d", "sha256": "97881261aad11bc1f6e213e6096afff3dbbea0ba605a6d3c8e892d51cf54be23" }, "downloads": -1, "filename": "ocean_aquarius-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e916346f62f67f4e4832ecfa8a048d3d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16379, "upload_time": "2019-03-29T15:13:00", "url": "https://files.pythonhosted.org/packages/64/87/6c32760a0de8e804bc7bb3005f40d155a341185725f2b39724c4ee6372b7/ocean_aquarius-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "624939a7760400eb5f449e3a42b5dcbd", "sha256": "505d43291e7cc94dec16accc205d06df0d2a6ee0a447748fc02f0fc9b2f8fdc3" }, "downloads": -1, "filename": "ocean-aquarius-0.2.0.tar.gz", "has_sig": false, "md5_digest": "624939a7760400eb5f449e3a42b5dcbd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22490, "upload_time": "2019-03-29T15:13:01", "url": "https://files.pythonhosted.org/packages/3a/83/f9349c35be38231fc7aedf9912dcce46b69cba512cd3056e6c839ef32c05/ocean-aquarius-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "331ed32025b1acd85aa8528eb4ec5c4f", "sha256": "5f2b01e4fe773447c0512eb74c8c00ad4c0d9ff44fe641cf0e6f146c8dc0d000" }, "downloads": -1, "filename": "ocean_aquarius-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "331ed32025b1acd85aa8528eb4ec5c4f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16511, "upload_time": "2019-04-05T08:01:38", "url": "https://files.pythonhosted.org/packages/7c/7d/5190c2f6d6b9657b43a7606eaa49f7a5d34111d0965f9b37d7959c769dc7/ocean_aquarius-0.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8fccfe050df0617b8138d9aaabbba1ea", "sha256": "629203f376b55c65bccf728be190cd95e0a01b8cc7e5790c023249ce252b3feb" }, "downloads": -1, "filename": "ocean-aquarius-0.2.1.tar.gz", "has_sig": false, "md5_digest": "8fccfe050df0617b8138d9aaabbba1ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22625, "upload_time": "2019-04-05T08:01:40", "url": "https://files.pythonhosted.org/packages/05/70/643c74beee80ab5859e0b534754d8d198c7d6602fbcbf4a8214919935a91/ocean-aquarius-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "d625a3a4768a736d8ad2171d38a7c356", "sha256": "466211857076fb7809ee85ad3ac8ba3e2e6ddbf768500fa8088a93f733befa2f" }, "downloads": -1, "filename": "ocean_aquarius-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d625a3a4768a736d8ad2171d38a7c356", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16569, "upload_time": "2019-04-09T06:17:00", "url": "https://files.pythonhosted.org/packages/17/23/90e628fc287bae028a967423088d7c91bd2f4c5e24f537748a4bf54a9c86/ocean_aquarius-0.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "704c280ea8501173d9d03939293ca3fb", "sha256": "987c296bdc66831d38c17cb10f6a96e8b6dbf23b2cbcfc14c5713fb0a6aeb6cb" }, "downloads": -1, "filename": "ocean-aquarius-0.2.2.tar.gz", "has_sig": false, "md5_digest": "704c280ea8501173d9d03939293ca3fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23144, "upload_time": "2019-04-09T06:17:01", "url": "https://files.pythonhosted.org/packages/d7/3c/652a05fbd4c7cf26677fdf751ed4c7a9e97337fb6aac6304f7dd0184ee9c/ocean-aquarius-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "95bac6d2d0eeccbee19005993f4cf6cd", "sha256": "a57c65c46868125d9bf4d763c4c96fee7eac211c2510ab60df6bb2be1eabf193" }, "downloads": -1, "filename": "ocean_aquarius-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "95bac6d2d0eeccbee19005993f4cf6cd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18276, "upload_time": "2019-05-20T09:24:34", "url": "https://files.pythonhosted.org/packages/7a/43/5157b7d1d983a99f6ec79c212ba5eb05dcf7bad9c3da2de8c84d9f5e65aa/ocean_aquarius-0.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9625738ad4cca8aa4ad48c553e3ebf28", "sha256": "9b54de4a8e1d1391d8a44891583ea180361c5f31147ff463b842d5bcd963768f" }, "downloads": -1, "filename": "ocean-aquarius-0.2.3.tar.gz", "has_sig": false, "md5_digest": "9625738ad4cca8aa4ad48c553e3ebf28", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21510, "upload_time": "2019-05-20T09:24:35", "url": "https://files.pythonhosted.org/packages/f1/46/cb56dda588993ce2efcc9084cd4eb568d9049b2983b7ca1328340546d6a6/ocean-aquarius-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "b3bde64458a336eb381e8e2e243e8ff0", "sha256": "0d9c0af2b63f66fa4c5b6a05d12f94e802c725e44c9abf2637ff199d3cbb4f86" }, "downloads": -1, "filename": "ocean_aquarius-0.2.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b3bde64458a336eb381e8e2e243e8ff0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18372, "upload_time": "2019-05-22T08:00:53", "url": "https://files.pythonhosted.org/packages/1c/c6/78e9b354a5e19df530d55589bb6e24b9990892e5c7b115c4329f0f057f12/ocean_aquarius-0.2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "385fa8b3b2bab35762e9e937395fcadd", "sha256": "a3bfa51f7cc4c9ccd5dbc6096e97b00aaf7109b712e69846c4c262bb6aaa47e8" }, "downloads": -1, "filename": "ocean-aquarius-0.2.4.tar.gz", "has_sig": false, "md5_digest": "385fa8b3b2bab35762e9e937395fcadd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21619, "upload_time": "2019-05-22T08:00:55", "url": "https://files.pythonhosted.org/packages/51/80/ecc0141215b1bac0deff369f12a72e0ac4f8f783015495e4a92d42da0dd6/ocean-aquarius-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "6648d95a13ab20d356645809c5cd862f", "sha256": "5cbe25b3c2d57f9660681ef81b3efe108dc3836cb7635f15d8c45f724a622887" }, "downloads": -1, "filename": "ocean_aquarius-0.2.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6648d95a13ab20d356645809c5cd862f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18394, "upload_time": "2019-05-22T11:49:30", "url": "https://files.pythonhosted.org/packages/7c/fc/a7ce11b1691357e24239d9ee7f9bbb9ace4f87c660c4434b9c291e915aea/ocean_aquarius-0.2.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3418d74320b64dc9456a9c99d9bd4424", "sha256": "ebe7648a8f76f3b0d5f3a544f09f0d3f20111bb3c485fa3eb3e8f9a61a8e11d6" }, "downloads": -1, "filename": "ocean-aquarius-0.2.5.tar.gz", "has_sig": false, "md5_digest": "3418d74320b64dc9456a9c99d9bd4424", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22255, "upload_time": "2019-05-22T11:49:31", "url": "https://files.pythonhosted.org/packages/44/55/e33f81ef7488fac7eefee6729c4568ea541aeab5b5d2ba5ddb7a5138489c/ocean-aquarius-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "4b0bf2969e01246a5fd4fef85ac8d3f7", "sha256": "b51b79fbaf7208b85496672649f8028b4efb25fc05b1ff0333ad85f4887a046b" }, "downloads": -1, "filename": "ocean_aquarius-0.2.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4b0bf2969e01246a5fd4fef85ac8d3f7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18435, "upload_time": "2019-05-24T16:00:27", "url": "https://files.pythonhosted.org/packages/e0/4b/e186907339103533dd016735b7a10a0784511ba4d5b22a003b9e673c1c49/ocean_aquarius-0.2.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "544994af2fd8fd64ff2f03b999d0c46b", "sha256": "cfcd7df6949a39c90f7174a942781ca40080e5f2108d797ac3ce8b335583aa08" }, "downloads": -1, "filename": "ocean-aquarius-0.2.6.tar.gz", "has_sig": false, "md5_digest": "544994af2fd8fd64ff2f03b999d0c46b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22330, "upload_time": "2019-05-24T16:00:28", "url": "https://files.pythonhosted.org/packages/34/d4/5631012bbcff6df1964f497450ba55949fa474bfc222ff95267b2bcaeec5/ocean-aquarius-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "313ab5c7c2bc6b7d26fab0aa277203cc", "sha256": "2075d2cee8139643ddfb129e72da21dd85c6f6a1813037947738fd54ca4cd4a8" }, "downloads": -1, "filename": "ocean_aquarius-0.2.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "313ab5c7c2bc6b7d26fab0aa277203cc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18198, "upload_time": "2019-05-28T07:50:07", "url": "https://files.pythonhosted.org/packages/d5/77/8c2589ee939832a921d5612d11093a37ef5c18eee2f94276039911ca0477/ocean_aquarius-0.2.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5aeda739f34d9c3251ff5239e0d73a22", "sha256": "653b0fe71e3de2e08ab850b7061dd443614245f00a47934d28c41d5cfd259a11" }, "downloads": -1, "filename": "ocean-aquarius-0.2.7.tar.gz", "has_sig": false, "md5_digest": "5aeda739f34d9c3251ff5239e0d73a22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22058, "upload_time": "2019-05-28T07:50:08", "url": "https://files.pythonhosted.org/packages/71/85/bcf8099157c7d77c3f89e8a96ff657e66c945f8d9a9e0976dc2c6a728c53/ocean-aquarius-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "fceb80bc3b20a285be22732463ae6a1c", "sha256": "ce7846667e7d17c409d708b8f0ecdb488afed5f421913041dd726d736687240e" }, "downloads": -1, "filename": "ocean_aquarius-0.2.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fceb80bc3b20a285be22732463ae6a1c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18225, "upload_time": "2019-05-31T10:02:03", "url": "https://files.pythonhosted.org/packages/2e/c5/edeb13621eadcda9f9a8a627c663b5fa122abfbd73bfbee9974ed00aeeea/ocean_aquarius-0.2.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "977dcbd306a29f2ff9cab62af2938ed5", "sha256": "25622955abbf8a66381677a680714df59035ee21ba5a1c7e8577541e9429cd08" }, "downloads": -1, "filename": "ocean-aquarius-0.2.8.tar.gz", "has_sig": false, "md5_digest": "977dcbd306a29f2ff9cab62af2938ed5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22083, "upload_time": "2019-05-31T10:02:04", "url": "https://files.pythonhosted.org/packages/aa/9e/1fa780f2f0a1ca18c33d91bb1f7cb8dd8a05a668dabb6a1a34fc8aae8f43/ocean-aquarius-0.2.8.tar.gz" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "5f079298839646f66b65156204f2fa42", "sha256": "090f1171c503091141d447c11fb541235d96be9d9efe5e49f26b118d82f01995" }, "downloads": -1, "filename": "ocean_aquarius-0.2.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5f079298839646f66b65156204f2fa42", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18282, "upload_time": "2019-06-04T12:42:43", "url": "https://files.pythonhosted.org/packages/e4/28/92451a25d61c431bbec5e36ed674a7b1be1164891112e76b93a234f24339/ocean_aquarius-0.2.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "75ccb7bd523b5e70663d4a03733fe78b", "sha256": "bcc93656445c93f0eb44d5e95590f267e546c8f2f481da7aa1d6217e4ddc6e1a" }, "downloads": -1, "filename": "ocean-aquarius-0.2.9.tar.gz", "has_sig": false, "md5_digest": "75ccb7bd523b5e70663d4a03733fe78b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22173, "upload_time": "2019-06-04T12:42:45", "url": "https://files.pythonhosted.org/packages/df/ce/a06fd9e78d836b97acbb38fec8db6a4399b49a8a55b15f5d03ab4774a810/ocean-aquarius-0.2.9.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "32047b1f8dc2044be8ff71eaf649a734", "sha256": "f6f36e92941ada6e573042c4060b659c7ff6b1b51931cd4290264fc651fb1a83" }, "downloads": -1, "filename": "ocean_aquarius-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "32047b1f8dc2044be8ff71eaf649a734", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18390, "upload_time": "2019-06-12T10:21:40", "url": "https://files.pythonhosted.org/packages/e2/4d/6080a73d46a217024d7eea3f0dbf0989d22afa75662cc24ed8ee0db7f15e/ocean_aquarius-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ff76ba7efb3b49df99c1395166c991dc", "sha256": "d6d8aff32bef44fc46799e4bfb9cdc0dbce29d2748f4e9411e1451cfc61f1762" }, "downloads": -1, "filename": "ocean-aquarius-0.3.0.tar.gz", "has_sig": false, "md5_digest": "ff76ba7efb3b49df99c1395166c991dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22312, "upload_time": "2019-06-12T10:21:42", "url": "https://files.pythonhosted.org/packages/6d/70/dc7e6e0783b05c93f4bfde9eb27acb7b49791984486d602084bb78ce3af7/ocean-aquarius-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "877f6bc7d8173114eb7c7f6a596e0718", "sha256": "e798fcd5044f1bda885ffc58d1c53c26ffa4650befe252c82453b7ffd1fab9b4" }, "downloads": -1, "filename": "ocean_aquarius-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "877f6bc7d8173114eb7c7f6a596e0718", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18326, "upload_time": "2019-06-13T11:39:28", "url": "https://files.pythonhosted.org/packages/ea/07/3efcc6276e8a89da8ac890eed37ebae0029d8cbf52ad90cc50f20c75b4ea/ocean_aquarius-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b98d1f4d01dd3ed92886003ea55ab75f", "sha256": "de2050da8dd6405dda2d77f1e9bf0c7c68af731d545dddf650b54260d68e9901" }, "downloads": -1, "filename": "ocean-aquarius-0.3.1.tar.gz", "has_sig": false, "md5_digest": "b98d1f4d01dd3ed92886003ea55ab75f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22282, "upload_time": "2019-06-13T11:39:30", "url": "https://files.pythonhosted.org/packages/77/7d/b2108c29bc06d92e103e190fdea9f52f87c02eafd1578c5917d90a59cf69/ocean-aquarius-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "5153b3aafc07e40f34b5db3fb4c06541", "sha256": "d06731880b7929d78117bcfbeccf2c73ca2c2515e92cf323f6c12314572908ec" }, "downloads": -1, "filename": "ocean_aquarius-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5153b3aafc07e40f34b5db3fb4c06541", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18328, "upload_time": "2019-06-20T13:17:14", "url": "https://files.pythonhosted.org/packages/34/64/5f426ae2e49bf1f03859bc14faf72416e20f867648a980cdb27db200443e/ocean_aquarius-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "55c4d414b1afcfba6322f552e5bacdc7", "sha256": "d08241a3b8b60c41b6fe353f0e396551202fb05fc18a31de535d5aa09312009d" }, "downloads": -1, "filename": "ocean-aquarius-0.3.2.tar.gz", "has_sig": false, "md5_digest": "55c4d414b1afcfba6322f552e5bacdc7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22307, "upload_time": "2019-06-20T13:17:16", "url": "https://files.pythonhosted.org/packages/0b/ba/ab82435262364269434365f056c5de4071f2ea93f85030a5f0e329080c3a/ocean-aquarius-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "db6bd5bd384e9c130a602b0f5b134069", "sha256": "2bf7669ba7c34531c6de8d8b762661525d1cfbd0a1a2be58bf42bc1976d636fc" }, "downloads": -1, "filename": "ocean_aquarius-0.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "db6bd5bd384e9c130a602b0f5b134069", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18326, "upload_time": "2019-06-21T15:48:10", "url": "https://files.pythonhosted.org/packages/92/35/cca95c71b0f28704bf8cf6a706b57b96e2b76b7fc282a363356c96a8f255/ocean_aquarius-0.3.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "55353623aa192172660bb16177825903", "sha256": "cae413e24b41e780cebf0c9f3671ec23fe29ce6ac2916ab05ca2a0be7b13f31c" }, "downloads": -1, "filename": "ocean-aquarius-0.3.3.tar.gz", "has_sig": false, "md5_digest": "55353623aa192172660bb16177825903", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22322, "upload_time": "2019-06-21T15:48:12", "url": "https://files.pythonhosted.org/packages/0c/a9/bc73e55688f8f80a91edd38c8ac642910221c16bf01d57e55542bcc25e86/ocean-aquarius-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "17ac480987cd65b6b29e2d4bc27451da", "sha256": "5a11f3e16cf2196ff5f3385a31cbfc201efff3d1aa529f606ec482aa763b7cad" }, "downloads": -1, "filename": "ocean_aquarius-0.3.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "17ac480987cd65b6b29e2d4bc27451da", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18511, "upload_time": "2019-06-26T14:12:39", "url": "https://files.pythonhosted.org/packages/2f/42/2203600772615d4e1f1b9e98411b58eaf66c32de712a0da9bd4df44d586d/ocean_aquarius-0.3.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5583f3eca20fd7312ecf8e71200afe85", "sha256": "ec5bb365632dbd539c5340383a7a252de92f57794a2110a12208257ece7b22a5" }, "downloads": -1, "filename": "ocean-aquarius-0.3.4.tar.gz", "has_sig": false, "md5_digest": "5583f3eca20fd7312ecf8e71200afe85", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22587, "upload_time": "2019-06-26T14:12:40", "url": "https://files.pythonhosted.org/packages/32/e5/c2b5e52c07a7536cf6b2f4ac7d3f6bbd6ef75f303614ec31ea036ac503ac/ocean-aquarius-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "4c9d9fa736f0f54c61b0a4878459b94f", "sha256": "6c9559f67cb5fc13c7c4cd18e87aa9ea7edfd6bf0f5fb1e5c2a001a57fd3574d" }, "downloads": -1, "filename": "ocean_aquarius-0.3.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4c9d9fa736f0f54c61b0a4878459b94f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20237, "upload_time": "2019-06-28T12:17:37", "url": "https://files.pythonhosted.org/packages/98/15/c098dab93e0686a3ecfb79ec12707627c8a75615a05f0eee30c823dfe449/ocean_aquarius-0.3.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "48a953e7a3c13776d50c2d05ff1acbf0", "sha256": "378e1c08079d6b1d5dd7c9ca451ac3d394d9ff0b0858049f24e146888c28158c" }, "downloads": -1, "filename": "ocean-aquarius-0.3.5.tar.gz", "has_sig": false, "md5_digest": "48a953e7a3c13776d50c2d05ff1acbf0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24027, "upload_time": "2019-06-28T12:17:39", "url": "https://files.pythonhosted.org/packages/33/91/f454717441af98d970e8a8298e313b9aaefb4285078e3df0fc2ade8b9e1b/ocean-aquarius-0.3.5.tar.gz" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "f38155c539a699d64866417115ef8a18", "sha256": "330ac3be38cff681151968e902d9ae5c3f07b043995f45f44f35d5ff871e1d4e" }, "downloads": -1, "filename": "ocean_aquarius-0.3.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f38155c539a699d64866417115ef8a18", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18835, "upload_time": "2019-07-03T09:24:10", "url": "https://files.pythonhosted.org/packages/74/7f/f7c945a464532b4c27867843c788569efe1a98fdbb5873ed38982c27bf65/ocean_aquarius-0.3.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "04a020c5b51d7b476021d161adf4e4c6", "sha256": "285b2a13b1456f3f9095586f6bc78d96569ca0833cf08ea9ad3db7525f40e825" }, "downloads": -1, "filename": "ocean-aquarius-0.3.7.tar.gz", "has_sig": false, "md5_digest": "04a020c5b51d7b476021d161adf4e4c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22994, "upload_time": "2019-07-03T09:24:11", "url": "https://files.pythonhosted.org/packages/0d/e1/3cbac941ee9eed505d0bf7561ff35a444443dbac7032349629626147e27e/ocean-aquarius-0.3.7.tar.gz" } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "372818026d609e1676737837b3d3e91e", "sha256": "9ad7683f38a194a8076ee892c0ac1957e45443f6c025d524eeb84ba95e65080c" }, "downloads": -1, "filename": "ocean_aquarius-0.3.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "372818026d609e1676737837b3d3e91e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18834, "upload_time": "2019-07-16T14:51:42", "url": "https://files.pythonhosted.org/packages/0b/e6/9a3a7fb2960ec55e8043dabc8e3fb93aa954e7fcbef112c8396e9dc37d0b/ocean_aquarius-0.3.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "14378b792a0de42b04ee3b20807fec9d", "sha256": "5b1bd4c7388e64b7d37980b96a8b3750375a9db88d8cd92392453d251a490ea0" }, "downloads": -1, "filename": "ocean-aquarius-0.3.8.tar.gz", "has_sig": false, "md5_digest": "14378b792a0de42b04ee3b20807fec9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23024, "upload_time": "2019-07-16T14:51:43", "url": "https://files.pythonhosted.org/packages/6e/56/53b14194d9adf086cffc92ff4d5eb2b32f3b4e7ab243792bc011d8786706/ocean-aquarius-0.3.8.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "3f40011c490eb2ddb31ad1ed71df3f43", "sha256": "c301db682193a983918255c74fc6a41c8b01803f10761563b6f8ae86d4024adf" }, "downloads": -1, "filename": "ocean_aquarius-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3f40011c490eb2ddb31ad1ed71df3f43", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18729, "upload_time": "2019-08-13T14:20:33", "url": "https://files.pythonhosted.org/packages/65/bb/b0b3bf7a09ded87c294cbe5f216a534575a7610c11bf0aeb1e331bf317d2/ocean_aquarius-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bd4f6cd0445614910c0d3ee3011e63c6", "sha256": "b711853b11fd7f159108e9f14d26c2fe11cd3e7e66cbe990643e7aeaa7db1bdd" }, "downloads": -1, "filename": "ocean-aquarius-0.4.0.tar.gz", "has_sig": false, "md5_digest": "bd4f6cd0445614910c0d3ee3011e63c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22973, "upload_time": "2019-08-13T14:20:35", "url": "https://files.pythonhosted.org/packages/c6/92/23b217bfedadef6d5357e93d6bc6294f54098d98bb979e68f149eb6b760a/ocean-aquarius-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "ab13ce0f3e214e248d824062e5d2e53e", "sha256": "2078bea9efb915a53c599e5f7979b6e8910d073c5f771fb931c94b69e9f02394" }, "downloads": -1, "filename": "ocean_aquarius-0.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ab13ce0f3e214e248d824062e5d2e53e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18720, "upload_time": "2019-08-16T12:18:16", "url": "https://files.pythonhosted.org/packages/fb/8a/dd4655b8b6e01b68022c9eb0574290ef47282ba939d8d4a0ebe3c6cd9a9f/ocean_aquarius-0.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "69a5dc406f81ef0f4b879b4729f8ac04", "sha256": "30a48c6da3ab5c43b011f6999b0c8266588e482c38323b49df43581f69aefbb8" }, "downloads": -1, "filename": "ocean-aquarius-0.4.1.tar.gz", "has_sig": false, "md5_digest": "69a5dc406f81ef0f4b879b4729f8ac04", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23020, "upload_time": "2019-08-16T12:18:18", "url": "https://files.pythonhosted.org/packages/80/9f/d0bd3cdda5840b215fd898cd75c2ff8db3d82a1256bbe8d2fc7b02d08818/ocean-aquarius-0.4.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ab13ce0f3e214e248d824062e5d2e53e", "sha256": "2078bea9efb915a53c599e5f7979b6e8910d073c5f771fb931c94b69e9f02394" }, "downloads": -1, "filename": "ocean_aquarius-0.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ab13ce0f3e214e248d824062e5d2e53e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18720, "upload_time": "2019-08-16T12:18:16", "url": "https://files.pythonhosted.org/packages/fb/8a/dd4655b8b6e01b68022c9eb0574290ef47282ba939d8d4a0ebe3c6cd9a9f/ocean_aquarius-0.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "69a5dc406f81ef0f4b879b4729f8ac04", "sha256": "30a48c6da3ab5c43b011f6999b0c8266588e482c38323b49df43581f69aefbb8" }, "downloads": -1, "filename": "ocean-aquarius-0.4.1.tar.gz", "has_sig": false, "md5_digest": "69a5dc406f81ef0f4b879b4729f8ac04", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23020, "upload_time": "2019-08-16T12:18:18", "url": "https://files.pythonhosted.org/packages/80/9f/d0bd3cdda5840b215fd898cd75c2ff8db3d82a1256bbe8d2fc7b02d08818/ocean-aquarius-0.4.1.tar.gz" } ] }