{ "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.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "[![banner](https://raw.githubusercontent.com/oceanprotocol/art/master/github/repo-banner%402x.png)](https://oceanprotocol.com)\n\n# oceandb-mongodb-driver\n\n> \ud83d\udc33 [Mongo DB](https://www.mongodb.com/) driver for OceanDB (Python).\n> [oceanprotocol.com](https://oceanprotocol.com)\n\n[![Travis (.com)](https://img.shields.io/travis/com/oceanprotocol/oceandb-mongodb-driver.svg)](https://travis-ci.com/oceanprotocol/oceandb-mongodb-driver)\n[![Codacy coverage](https://img.shields.io/codacy/coverage/6b8d544ca5064cfeb00e679b265f5ac9.svg)](https://app.codacy.com/project/ocean-protocol/oceandb-mongodb-driver/dashboard)\n[![PyPI](https://img.shields.io/pypi/v/oceandb-mongodb-driver.svg)](https://pypi.org/project/oceandb-mongodb-driver/)\n[![GitHub contributors](https://img.shields.io/github/contributors/oceanprotocol/oceandb-mongodb-driver.svg)](https://github.com/oceanprotocol/oceandb-mongodb-driver/graphs/contributors)\n\n---\n\n## Table of Contents\n\n - [Features](#features)\n - [Prerequisites](#prerequisites)\n - [Quickstart](#quickstart)\n - [Environment variables](#environment-variables)\n - [Code style](#code-style)\n - [Testing](#testing)\n - [New Version](#new-version)\n - [License](#license)\n\n---\n\n## Features\n\nMongoDB driver to connect implementing OceanDB.\n\n## Prerequisites\n\nYou should have running a mongo instance.\n\n## Quickstart\n\nFirst of all we have to specify where is allocated our config.\nTo do that we have to pass the following argument:\n\n```\n--config=/path/of/my/config\n```\n\nIf you do not provide a configuration path, by default the config is expected in the config folder.\n\nIn the configuration we are going to specify the following parameters to\n\n```yaml\n\n [oceandb]\n\n module=mongodb # You can use one the plugins already created. Currently we have mongodb and bigchaindb.\n module.path= # You can specify the location of your custom plugin.\n db.hostname=localhost # Address of your MongoDB.\n db.port=27017 # Port of your Mongodb.\n\n db.ssl=True # If True, connections will be made using HTTPS, else using HTTP\n db.verify_certs=False # If True, CA certificate will be verified\n db.ca_cert_path= # If verifyCerts is True, then path to the CA cert should be provided here\n db.client_key= # If db server needs client verification, then provide path to your client key\n db.client_cert_path= # If db server needs client verification, then provide path to your client certificate\n\n db.username=user # If you are using authentication, mongodb username.\n db.password=password # If you are using authentication, mongodb password.\n db.name=test # Mongodb database name\n db.collection=col # Mongodb collection name\n\n```\n\nOnce you have defined this the only thing that you have to do it is use it:\n\n```python\n\n oceandb = OceanDb(conf)\n oceandb.write({\"value\": \"test\"}, id)\n\n```\n\n## Environment variables\n\nWhen you want to instantiate an Oceandb plugin you can provide the next environment variables:\n\n- **$CONFIG_PATH** \n- **$MODULE** \n- **$DB_HOSTNAME** \n- **$DB_PORT**\n- **$DB_NAME**\n- **$DB_COLLECTION**\n- **$DB_USERNAME**\n- **$DB_PASSWORD**\n\n\n## Queries\n\nCurrently we are supporting a list of queries predefined in order to improve the search:\nAll this queries present a common format: \n```query:{\"name\":[args]}```\n\nThis queries are the following:\n- price\n\n Could receive one or two parameters. If you only pass one assumes that your query is going to start from 0 to your value.\n\n Next query:\n `query:{\"price\":[0,10]}`\n\n It is transformed to:\n `{\"service.metadata.base.price\":{\"$gt\": 0, \"$lt\": 10}}`\n\n- license\n\n It is going to retrieve all the documents with license that you are passing in the parameters, \n if you do not pass any value retrieve all.\n\n `{\"license\":[\"Public domain\", \"CC-YB\"]}`\n\n- type\n\n It is going to check that the following service types are included in the ddo.\n\n `{\"type\":[\"Access\", \"Metadata\"]}`\n\n- sample\n\n Check that the metadata include a sample that contains a link of type sample. Do not take parameters.\n\n `{\"sample\":[]}`\n\n- categories\n\n Retrieve all the values that contain one of the specifies categories.\n\n `{\"categories\":[\"weather\", \"meteorology\"]}`\n\n- created\n\n Retrieve all the values that has been created after a specified date. \n The parameters available are 'today', 'lastWeek', 'lastMonth', 'lastYear'. If you pass more than one take the bigger interval.\n If you do not pass any parameter retrieve everything.\n\n `{\"created\":[\"today\"]}`\n\n- updatedFrequency\n\n Retrieve all the values that contain one of the specifies updated frecuencies.\n\n `{\"updatedFrequency\":[\"monthly\"]}`\n\n- text\n\n Retrieve all the values that match with the text sent.\n\n `{\"text\":[\"weather\"]}`\n\n## Code style\n\nThe information about code style in python is documented in this two links [python-developer-guide](https://github.com/oceanprotocol/dev-ocean/blob/master/doc/development/python-developer-guide.md)\nand [python-style-guide](https://github.com/oceanprotocol/dev-ocean/blob/master/doc/development/python-style-guide.md).\n\n## Testing\n\nAutomatic tests are setup via Travis, executing `tox`.\nOur test use pytest framework.\n\n## New Version\n\nThe `bumpversion.sh` script helps to bump the project version. You can execute the script using as first argument {major|minor|patch} to bump accordingly the version.\n\n## License\n\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/oceandb-mongodb-driver", "keywords": "oceandb-mongodb-driver", "license": "Apache Software License 2.0", "maintainer": "", "maintainer_email": "", "name": "oceandb-mongodb-driver", "package_url": "https://pypi.org/project/oceandb-mongodb-driver/", "platform": "", "project_url": "https://pypi.org/project/oceandb-mongodb-driver/", "project_urls": { "Homepage": "https://github.com/oceanprotocol/oceandb-mongodb-driver" }, "release_url": "https://pypi.org/project/oceandb-mongodb-driver/0.1.10/", "requires_dist": [ "oceandb-driver-interface", "pymongo" ], "requires_python": "", "summary": "\ud83d\udc33 Mongo DB BigchainDB driver (Python).", "version": "0.1.10" }, "last_serial": 5313410, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "5d59caaabc8dda5f351909ce235abb05", "sha256": "a1ec63bba7f7bc48a6b26b4f4307cdd9a92394782e20f0a3102642d44a48f06e" }, "downloads": -1, "filename": "oceandb_mongodb_driver-0.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5d59caaabc8dda5f351909ce235abb05", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5358, "upload_time": "2018-07-02T13:19:16", "url": "https://files.pythonhosted.org/packages/d8/11/6019ce8d4cc83e683f06c4c9347217b1626c549e6c4f07cf20a75d80217d/oceandb_mongodb_driver-0.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fcb47b2e8ab869b48dbbbc808cc486a6", "sha256": "68cea810824c5e2ae17f4a2aa52510d753dc6320ec743655fcdf3d58d93d7342" }, "downloads": -1, "filename": "oceandb-mongodb-driver-0.0.1.tar.gz", "has_sig": false, "md5_digest": "fcb47b2e8ab869b48dbbbc808cc486a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9646, "upload_time": "2018-07-02T13:19:18", "url": "https://files.pythonhosted.org/packages/51/fd/43b5227bbd12def90ff5631d83e49abb5dcab810e3f7dee7f379852c1904/oceandb-mongodb-driver-0.0.1.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "7b9a4ee9307a1a5a7e53dac0524c3ceb", "sha256": "7494fc7b5a14ca617ca9ee38f767471ecf4ae9c4bf0947d16562ebba1cab525f" }, "downloads": -1, "filename": "oceandb_mongodb_driver-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7b9a4ee9307a1a5a7e53dac0524c3ceb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3891, "upload_time": "2018-08-14T10:12:13", "url": "https://files.pythonhosted.org/packages/9b/d1/edc1cb9f6d41abc05d89b7e61f35babfe14fa3997e9e89287552e61e2618/oceandb_mongodb_driver-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "381e189c8b66447260fd61d9f8689d7b", "sha256": "da9c13a476cebc4cf2503f5aa329a0b1a4425f68c2dbc3544c880c748c35c205" }, "downloads": -1, "filename": "oceandb-mongodb-driver-0.1.0.tar.gz", "has_sig": false, "md5_digest": "381e189c8b66447260fd61d9f8689d7b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9999, "upload_time": "2018-08-14T10:12:14", "url": "https://files.pythonhosted.org/packages/42/34/b13a0c60b82a24b3a92298acc170be180be8fbf6f6283f12adad6573d377/oceandb-mongodb-driver-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "0968a76f3bf002fe3b26fbde68d37a82", "sha256": "8752467ee23535dac5e2b339dff84bb48f1f89209f4743493b360313a3143abe" }, "downloads": -1, "filename": "oceandb_mongodb_driver-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0968a76f3bf002fe3b26fbde68d37a82", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4538, "upload_time": "2018-08-24T12:13:56", "url": "https://files.pythonhosted.org/packages/a2/3c/2a5a364356176a5d5ab02d2533a7364e5a4f1719f0841a2c6e42362705e0/oceandb_mongodb_driver-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "136080b26d58de9b60ccd8ab2e6c9861", "sha256": "b5b1d7bc69f5fdd7237a5d725356cae5b73119382fc519197c7986d8df2afddb" }, "downloads": -1, "filename": "oceandb-mongodb-driver-0.1.1.tar.gz", "has_sig": false, "md5_digest": "136080b26d58de9b60ccd8ab2e6c9861", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8724, "upload_time": "2018-08-24T12:13:58", "url": "https://files.pythonhosted.org/packages/97/0d/5a01b213eb8530e881322d17a0a3bf708d1994dc26518047858871c0fd2a/oceandb-mongodb-driver-0.1.1.tar.gz" } ], "0.1.10": [ { "comment_text": "", "digests": { "md5": "615339e8aff1a17179fe273caf1a5d0c", "sha256": "5cefa4dce44a712325a291b378840ffae74d577b156c7fcc98ccc4c5c6b31ae0" }, "downloads": -1, "filename": "oceandb_mongodb_driver-0.1.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "615339e8aff1a17179fe273caf1a5d0c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8079, "upload_time": "2019-05-24T15:51:58", "url": "https://files.pythonhosted.org/packages/3a/ab/12022e115623f20dcf86e47020ad918fe721fa2dd49eb627c585c68b5d01/oceandb_mongodb_driver-0.1.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9ad8bd58578345ca0c52b7d99d3849c8", "sha256": "e4ae64d68564459886198b450ce526dcb0f3d185f0f6a893841e8744c587e84a" }, "downloads": -1, "filename": "oceandb-mongodb-driver-0.1.10.tar.gz", "has_sig": false, "md5_digest": "9ad8bd58578345ca0c52b7d99d3849c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15577, "upload_time": "2019-05-24T15:51:59", "url": "https://files.pythonhosted.org/packages/4d/fb/d3b3c5a600c1b1ebaceb1326c76585eecffeabfdca239a4a600754e59a65/oceandb-mongodb-driver-0.1.10.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "d2a01f1a861eba9b22c6dacc4dffca2c", "sha256": "19d30acd15e366f6286f1688e8479ed5df48e42d0fcd02f0a8052b4e4bea489b" }, "downloads": -1, "filename": "oceandb_mongodb_driver-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d2a01f1a861eba9b22c6dacc4dffca2c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4889, "upload_time": "2018-09-03T14:28:23", "url": "https://files.pythonhosted.org/packages/d2/45/31275c133015ebd402f82deba97b2517a59b8d4187bd35d5dbe58f042a9b/oceandb_mongodb_driver-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "958a180081db83b3e2755243d806e907", "sha256": "98bf4a6a6de8ff15832681f84478da2995bc2aba73bc5700a14534e4ded5e6d2" }, "downloads": -1, "filename": "oceandb-mongodb-driver-0.1.2.tar.gz", "has_sig": false, "md5_digest": "958a180081db83b3e2755243d806e907", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9592, "upload_time": "2018-09-03T14:28:24", "url": "https://files.pythonhosted.org/packages/06/d2/9fd489b428d46e7d33401184f4e58823877587cec4db8452bab7baeebfa9/oceandb-mongodb-driver-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "2e962cd72686e654ccc571afe2f352f2", "sha256": "93782bae74e83d82188db71531eec87fe0bf62097b57bbb56a675a3a0905017b" }, "downloads": -1, "filename": "oceandb_mongodb_driver-0.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2e962cd72686e654ccc571afe2f352f2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9732, "upload_time": "2018-10-04T15:15:13", "url": "https://files.pythonhosted.org/packages/9f/33/75d5cdd9453f548a973783091aa1e4b2d507ed7bd786524a730b6983463b/oceandb_mongodb_driver-0.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "41229f2db846abacb027a88e9dc8e5e4", "sha256": "7bbe96789a2b356c60c03cabfb01b69f013dccf47f224ca76130f0eb20ca5a01" }, "downloads": -1, "filename": "oceandb-mongodb-driver-0.1.3.tar.gz", "has_sig": false, "md5_digest": "41229f2db846abacb027a88e9dc8e5e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10042, "upload_time": "2018-10-04T15:15:15", "url": "https://files.pythonhosted.org/packages/1f/eb/2ca68359253ecf9458bf33551f2505c2d9ecbfaa9ac83fe9f864d6658a34/oceandb-mongodb-driver-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "b4ed5968a8e9fd3fc5eb199995f5208a", "sha256": "2f9e50d76e95b1e5595c20fe31d79b8c57b7014d78cfbfb50c10cec48b504171" }, "downloads": -1, "filename": "oceandb_mongodb_driver-0.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b4ed5968a8e9fd3fc5eb199995f5208a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9792, "upload_time": "2019-02-08T11:43:57", "url": "https://files.pythonhosted.org/packages/b9/5b/fa27334fe9ed921619f650c20ebd4f5f75b1453d17c507bc4009879b5d29/oceandb_mongodb_driver-0.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a5bea0c2eb40adcd5fbeb85854445a8a", "sha256": "4b295b1c29fdbc651b60c4d29d1cf455f056e9f01d671316640ddc091abd6d99" }, "downloads": -1, "filename": "oceandb-mongodb-driver-0.1.4.tar.gz", "has_sig": false, "md5_digest": "a5bea0c2eb40adcd5fbeb85854445a8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10012, "upload_time": "2019-02-08T11:43:59", "url": "https://files.pythonhosted.org/packages/c7/28/c907618e8479f595dcf9ddc4f134d58d939ff7898da29e46d181ceeed5c7/oceandb-mongodb-driver-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "f015b97c61397f5a394087965d00e131", "sha256": "ef0e86919c7ce8edd3988b1bf1d882c8c6a0d1f3c568ba8861bdf603d5a13900" }, "downloads": -1, "filename": "oceandb_mongodb_driver-0.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f015b97c61397f5a394087965d00e131", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11646, "upload_time": "2019-02-14T11:14:21", "url": "https://files.pythonhosted.org/packages/59/c0/dd77994e271a4d3b6fa01c0851f8eefa2e778e8b3f7be1a379086e05ae2f/oceandb_mongodb_driver-0.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f276fce9a9c07dd7a4b6ed774f8fd1e9", "sha256": "e714c72552f51ac39c56b79a285e51db5d28a628f1d7faa4bed446522c4ac2b6" }, "downloads": -1, "filename": "oceandb-mongodb-driver-0.1.5.tar.gz", "has_sig": false, "md5_digest": "f276fce9a9c07dd7a4b6ed774f8fd1e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16572, "upload_time": "2019-02-14T11:14:22", "url": "https://files.pythonhosted.org/packages/ef/4e/9e8d05d7345c13805037c748bf58e3442faa720e6185a9eb304f1471431a/oceandb-mongodb-driver-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "926c7f9b72e9fc96c00371b2ab0a8fec", "sha256": "cef6e356be0511edead38adef124d61bd44f67afa87375c27ffa4a09f4a839e6" }, "downloads": -1, "filename": "oceandb_mongodb_driver-0.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "926c7f9b72e9fc96c00371b2ab0a8fec", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11711, "upload_time": "2019-02-21T11:20:49", "url": "https://files.pythonhosted.org/packages/0f/ca/ad7e7556135a860ef44f159290bc497d9cfefc21f64bee137d48d6fb66b3/oceandb_mongodb_driver-0.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8687d07ebb04d14aca3045de4b3f4bd4", "sha256": "d5e933bab95fabd6c6ef86687a4e36eba756f22c094739ffe596b13b803109ac" }, "downloads": -1, "filename": "oceandb-mongodb-driver-0.1.6.tar.gz", "has_sig": false, "md5_digest": "8687d07ebb04d14aca3045de4b3f4bd4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16706, "upload_time": "2019-02-21T11:20:50", "url": "https://files.pythonhosted.org/packages/da/91/4ec264bff003cc080c8c0bec0a4d614d666f716510a7c444dfb4e01152e8/oceandb-mongodb-driver-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "45f79ce9424c978eab7643658406f206", "sha256": "4111381139efc49dd72e75271736c258228495dde91e27e28ffddbd4a073fc8d" }, "downloads": -1, "filename": "oceandb_mongodb_driver-0.1.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "45f79ce9424c978eab7643658406f206", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12143, "upload_time": "2019-04-04T14:59:29", "url": "https://files.pythonhosted.org/packages/24/45/9255ce0c8cc8131ce14044529fdb249fe67fdef6701b6d88d14e419e995c/oceandb_mongodb_driver-0.1.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3a7e4aad13b111a68beb5d6c00d7709c", "sha256": "0064b3cf17de8b53209b2881af98d86c46f86941587b8f06ac98f886a797f216" }, "downloads": -1, "filename": "oceandb-mongodb-driver-0.1.7.tar.gz", "has_sig": false, "md5_digest": "3a7e4aad13b111a68beb5d6c00d7709c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17007, "upload_time": "2019-04-04T14:59:30", "url": "https://files.pythonhosted.org/packages/41/ef/016f19951cbbadce62816c938664994d4381d71a26e2bf56c072dc044ace/oceandb-mongodb-driver-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "18e9c7a1d62ada1b3246e12ea8a577f1", "sha256": "0612243e49e261b1fd3ed585dc4d316b5c5f43f295b64ff01afe54d8f0636165" }, "downloads": -1, "filename": "oceandb_mongodb_driver-0.1.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "18e9c7a1d62ada1b3246e12ea8a577f1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12127, "upload_time": "2019-04-05T06:53:43", "url": "https://files.pythonhosted.org/packages/c7/11/5753485ecce711410ea5aff1f9612dcbbd29a7fe5e046c94f0618b1abf5d/oceandb_mongodb_driver-0.1.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4ff683815011efa0615543c4a23ed24a", "sha256": "ab5d3a23226bb02d08f4923200e4d21d875e3055847a23b8e543c4edf2b1f8d6" }, "downloads": -1, "filename": "oceandb-mongodb-driver-0.1.8.tar.gz", "has_sig": false, "md5_digest": "4ff683815011efa0615543c4a23ed24a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17004, "upload_time": "2019-04-05T06:53:45", "url": "https://files.pythonhosted.org/packages/45/ff/9f8b2f9198e5aa2d1d325d03d345f5fa757c167de85e2fbf2b248ff6f0de/oceandb-mongodb-driver-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "8ba4fda8e4253fa0a448e0268d3aa250", "sha256": "ee0837e147075e48b5daeb544f9e5b4418f824f8f6082299d412e28c08eaf192" }, "downloads": -1, "filename": "oceandb_mongodb_driver-0.1.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8ba4fda8e4253fa0a448e0268d3aa250", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12232, "upload_time": "2019-04-08T14:57:46", "url": "https://files.pythonhosted.org/packages/15/db/a7cf023b747f1c89e20ba368e6baf3c55c1c41d48f93698369b46ede0e52/oceandb_mongodb_driver-0.1.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "08ff8687e3e2b479f467533fe9fdae9b", "sha256": "89cb30cc83b15108166921a0b65ecf200b7ee47b41a0fa2825d9ed9c83951bd0" }, "downloads": -1, "filename": "oceandb-mongodb-driver-0.1.9.tar.gz", "has_sig": false, "md5_digest": "08ff8687e3e2b479f467533fe9fdae9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15427, "upload_time": "2019-04-08T14:57:47", "url": "https://files.pythonhosted.org/packages/a3/ab/dc40c08e6d9b51ccad39d1d6d8bab799b6b145599bac657b452737adb8d8/oceandb-mongodb-driver-0.1.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "615339e8aff1a17179fe273caf1a5d0c", "sha256": "5cefa4dce44a712325a291b378840ffae74d577b156c7fcc98ccc4c5c6b31ae0" }, "downloads": -1, "filename": "oceandb_mongodb_driver-0.1.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "615339e8aff1a17179fe273caf1a5d0c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8079, "upload_time": "2019-05-24T15:51:58", "url": "https://files.pythonhosted.org/packages/3a/ab/12022e115623f20dcf86e47020ad918fe721fa2dd49eb627c585c68b5d01/oceandb_mongodb_driver-0.1.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9ad8bd58578345ca0c52b7d99d3849c8", "sha256": "e4ae64d68564459886198b450ce526dcb0f3d185f0f6a893841e8744c587e84a" }, "downloads": -1, "filename": "oceandb-mongodb-driver-0.1.10.tar.gz", "has_sig": false, "md5_digest": "9ad8bd58578345ca0c52b7d99d3849c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15577, "upload_time": "2019-05-24T15:51:59", "url": "https://files.pythonhosted.org/packages/4d/fb/d3b3c5a600c1b1ebaceb1326c76585eecffeabfdca239a4a600754e59a65/oceandb-mongodb-driver-0.1.10.tar.gz" } ] }