{ "info": { "author": "M. Farrajota", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: MacOS X", "Environment :: Win32 (MS Windows)", "Environment :: X11 Applications", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Scientific/Engineering" ], "description": ".. note::\n For the latest source, discussion, etc, please visit the\n `GitHub repository `_\n\n\ndbcollection\n============\n\n|Join the chat at https://gitter.im/dbcollection/dbcollection|\n\n|Build Status| |CircleCI| |Build status| |codecov| |License: MIT|\n|Documentation Status| |PyPI version|\n\n**dbcollection** is a library for downloading/parsing/managing datasets via simple methods.\nIt was built from the ground up to be cross-platform (**Windows**, **Linux**, **MacOS**) and\ncross-language (**Python**, **Lua**, **Matlab**, etc.). This is achieved by using the popular ``HDF5``\nfile format to store (meta)data of manually parsed datasets and the power of Python for\nscripting. By doing so, this library can target any platform that supports Python and\nany language that has bindings for ``HDF5``.\n\nThis package allows to easily manage and load datasets by using ``HDF5`` files to store\nmetadata. By storing all the necessary metadata to disk, managing either big or small\ndatasets has an equal or very similar impact on the system's resource usage.\nAlso, once a dataset is setup, it is setup forever! This means users can reuse any\npreviously set dataset as many times as needed without having to set it each time they\nare used.\n\n**dbcollection** allows users to focus on more important tasks like prototyping new models\nor testing them in different datasets without having to incur the loss of spending time managing\ndatasets or creating/modyfing scripts to load/fetch data by taking advantage\nof the work of the community that shared these resources.\n\nMain features\n-------------\n\nHere are some of key features dbcollection provides:\n\n- Simple API to load/download/setup/manage datasets.\n- Simple API to fetch data from a dataset.\n- Store and pull data from disk or from memory, you choose!\n- Datasets only need to be set/processed once, so next time you use it it will load instantly!\n- Cross-platform (**Windows**, **Linux**, **MacOs**).\n- Cross-language (**Python**, **Lua/Torch7**, **Matlab**).\n- Easily extensible to other languages that support ``HDF5`` files format.\n- Concurrent/parallel data access thanks to ``HDF5``.\n- Contains a diverse (and growing!) list of popular datasets for machine-, deep-learning tasks\n (*object detection*, *action recognition*, *human pose estimation*, etc.)\n\nSupported languages\n-------------------\n\n- Python (>=2.7 or >=3.5)\n- Lua/Torch7 (`link`_)\n- Matlab (>=2014a)\n (`link `__)\n\nPackage installation\n--------------------\n\nFrom PyPi\n~~~~~~~~~\n\nInstalling ``dbcollection`` using pip is simple. For that purpose,\nsimply do the following command:\n\n::\n\n $ pip install dbcollection\n\nFrom source\n~~~~~~~~~~~\n\nTo install **dbcollection** from source you need to do the following\nsetps:\n\n- Clone the repo to your hard drive:\n\n::\n\n $ git clone --recursive https://github.com/dbcollection/dbcollection\n\n- ``cd`` to the dbcollection folder and do the command\n\n::\n\n $ python setup.py install\n\nGetting started\n---------------\n\nBasic usage\n~~~~~~~~~~~\n\nUsing the module is pretty straight-forward. To import it just do:\n\n.. code:: python\n\n >>> import dbcollection as dbc\n\nTo load a dataset, you only need to use a single method that returns a\ndata loader object which can then be used to fetch data from.\n\n.. code:: python\n\n >>> mnist = dbc.load('mnist')\n\nThis data loader object contains information about the dataset\u2019s name,\ntask, data, cache paths, set splits, and some methods for querying and\nloading data from the ``HDF5`` metadata file.\n\nFor example, if you want to know how the data is structured inside the\nmetadata file, you can simply do the following:\n\n.. code:: python\n\n >>> mnist.info()\n\n > Set: test\n - classes, shape = (10, 2), dtype = uint8\n - images, shape = (10000, 28, 28), dtype = uint8, (in 'object_ids', position = 0)\n - labels, shape = (10000,), dtype = uint8, (in 'object_ids', position = 1)\n - object_fields, shape = (2, 7), dtype = uint8\n - object_ids, shape = (10000, 2), dtype = uint8\n\n (Pre-ordered lists)\n - list_images_per_class, shape = (10, 1135), dtype = int32\n\n > Set: train\n - classes, shape = (10, 2), dtype = uint8\n - images, shape = (60000, 28, 28), dtype = uint8, (in 'object_ids', position = 0)\n - labels, shape = (60000,), dtype = uint8, (in 'object_ids', position = 1)\n - object_fields, shape = (2, 7), dtype = uint8\n - object_ids, shape = (60000, 2), dtype = uint8\n\n (Pre-ordered lists)\n - list_images_per_class, shape = (10, 6742), dtype = int32\n\nTo fetch data samples from a field, its is as easy as calling a method\nwith the set and field names and the row id(s) you want to select. For\nexample, to retrieve the 10 first images all you need to do is the\nfollowing:\n\n.. code:: python\n\n >>> imgs = mnist.get('train', 'images', range(10))\n >>> imgs.shape\n (10, 28, 28)\n\n..\n\n Note: For more information about using this module, please check the\n documentation or the available notebooks for guidance.\n\nNotebooks\n~~~~~~~~~\n\nFor a more pratical introduction to **dbcollection\u2019s** module for\nmanaging datasets and fetching data, there are some python notebooks\navailable in the ``notebooks/`` folder for a more hands-on tutorial on\nhow to use this package.\n\nDocumentation\n-------------\n\nThe package documentation is hosted on `Read The Docs`_.\n\nIt provides a more detailed guide on how to use this package as well as\nadditional information that you might find relevant about this project.\n\nContributing\n------------\n\nAll contributions, bug reports, bug fixes, documentation improvements,\nenhancements and ideas are welcome. If you would like to see additional\nlanguages being supported, please consider contributing to the project.\n\nIf you are interested in fixing issues and contributing directly to the\ncode base, please see the document `How to Contribute`_.\n\nFeedback\n--------\n\nFor now, use the `Github issues`_ for requests/bug issues or use our `Gitter room`_\nfor any other questions you may have.\n\nLicense\n-------\n\n`MIT License`_\n\n.. _link: https://github.com/dbcollection/dbcollection-torch7\n\n.. |Join the chat at https://gitter.im/dbcollection/dbcollection| image:: https://badges.gitter.im/dbcollection/dbcollection.svg\n :target: https://gitter.im/dbcollection/dbcollection?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge\n.. |Build Status| image:: https://travis-ci.org/dbcollection/dbcollection.svg?branch=master\n :target: https://travis-ci.org/dbcollection/dbcollection\n.. |CircleCI| image:: https://circleci.com/gh/dbcollection/dbcollection/tree/master.svg?style=svg\n :target: https://circleci.com/gh/dbcollection/dbcollection/tree/master\n.. |Build status| image:: https://ci.appveyor.com/api/projects/status/85gpibosxhjo8yjl/branch/master?svg=true\n :target: https://ci.appveyor.com/project/farrajota/dbcollection-x3l0d/branch/master\n.. |codecov| image:: https://codecov.io/gh/dbcollection/dbcollection/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/dbcollection/dbcollection\n.. |License: MIT| image:: https://img.shields.io/badge/License-MIT-yellow.svg\n :target: https://opensource.org/licenses/MIT\n.. |Documentation Status| image:: https://readthedocs.org/projects/dbcollection/badge/?version=latest\n :target: http://dbcollection.readthedocs.io/en/latest/?badge=latest\n.. |PyPI version| image:: https://badge.fury.io/py/dbcollection.svg\n :target: https://badge.fury.io/py/dbcollection\n\n.. _Read The Docs: http://dbcollection.readthedocs.io/en/latest/\n.. _How to Contribute: https://github.com/dbcollection/dbcollection/blob/master/docs/source/contributing/how_to_contribute.rst\n.. _Github issues: https://github.com/dbcollection/dbcollection/issues\n.. _Gitter room: https://gitter.im/dbcollection/dbcollection\n.. _MIT License: LICENSE.txt\n", "description_content_type": "", "docs_url": null, "download_url": "https://github.com/dbcollection/dbcollection/archive/0.2.6.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/dbcollection/dbcollection", "keywords": "", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "dbcollection", "package_url": "https://pypi.org/project/dbcollection/", "platform": "any", "project_url": "https://pypi.org/project/dbcollection/", "project_urls": { "Download": "https://github.com/dbcollection/dbcollection/archive/0.2.6.tar.gz", "Homepage": "https://github.com/dbcollection/dbcollection" }, "release_url": "https://pypi.org/project/dbcollection/0.2.6/", "requires_dist": null, "requires_python": "", "summary": "A collection of popular datasets for deep learning.", "version": "0.2.6" }, "last_serial": 4106772, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "006ae7d3cdfe693fc01e67e610f641e1", "sha256": "926e186afc580a5406466e576608a0a3e8011e755139de74cc2b8a7a8968dd6e" }, "downloads": -1, "filename": "dbcollection-0.1.0-py2.7.egg", "has_sig": false, "md5_digest": "006ae7d3cdfe693fc01e67e610f641e1", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 656225, "upload_time": "2017-06-05T09:09:33", "url": "https://files.pythonhosted.org/packages/6d/4e/2330eaa72571beaaba8e8d84e913d03eff35d1b4e490d5695a9b852cd8ee/dbcollection-0.1.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "49ee6ab6f0a18cf3c31f7e914d995d3a", "sha256": "8f576e7b0306cd4e888cf1f920d4240ccd9ace0582b91e6ab4c7db4b24797b7b" }, "downloads": -1, "filename": "dbcollection-0.1.0-py3.4.egg", "has_sig": false, "md5_digest": "49ee6ab6f0a18cf3c31f7e914d995d3a", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 777245, "upload_time": "2017-06-05T09:09:37", "url": "https://files.pythonhosted.org/packages/18/92/1e6ddfa12ab2e829bf58cdfd0ab8d44adf607e4b081cae7a1ab10de498da/dbcollection-0.1.0-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "b1784ba669331524fe56bfc74f7605f3", "sha256": "d8ad64354b2a953ce58d93de177e5fcec3bc24153cf5fa9201993b1fad53a39d" }, "downloads": -1, "filename": "dbcollection-0.1.0-py3.5.egg", "has_sig": false, "md5_digest": "b1784ba669331524fe56bfc74f7605f3", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 776119, "upload_time": "2017-06-05T09:09:40", "url": "https://files.pythonhosted.org/packages/57/68/73d17e7f3b35051af13953003543b65cc6e9db108dc0526052e850e4a0ec/dbcollection-0.1.0-py3.5.egg" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "29d602a573a4ddb8b8ecd28ebaa254ce", "sha256": "a6f96290b9573fe60a0140f5a5d08025768d2545734f9292fff371e033022956" }, "downloads": -1, "filename": "dbcollection-0.1.1.tar.gz", "has_sig": false, "md5_digest": "29d602a573a4ddb8b8ecd28ebaa254ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 178628, "upload_time": "2017-05-30T14:58:37", "url": "https://files.pythonhosted.org/packages/09/e2/f0a8f2b1ea8ac79b071818a03c3725e8c4e7578ef562157e76e27408697f/dbcollection-0.1.1.tar.gz" } ], "0.1.10": [ { "comment_text": "", "digests": { "md5": "5c2b1f5e0e5deeaeeb7f0ad1474c74bc", "sha256": "c75d074593cff044dcf472728e5e725d70ca5e6ac026daadd9eac85ec9aa0439" }, "downloads": -1, "filename": "dbcollection-0.1.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5c2b1f5e0e5deeaeeb7f0ad1474c74bc", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 224027, "upload_time": "2017-11-03T15:32:41", "url": "https://files.pythonhosted.org/packages/f0/d0/08e7f42b2c116238b23788a471f9807b0ede0c528197019e2d3b96cea71b/dbcollection-0.1.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7db1ebbae65338e46e88e8a415c5992b", "sha256": "3f5cf87e34fc919446e89e67436745feec9e471228c949f3422f11b2628f490f" }, "downloads": -1, "filename": "dbcollection-0.1.10.tar.gz", "has_sig": false, "md5_digest": "7db1ebbae65338e46e88e8a415c5992b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11467656, "upload_time": "2017-11-03T15:32:30", "url": "https://files.pythonhosted.org/packages/26/f7/b5600d1cc705f3907aaa7af30df28894520aa9d8280755eb7cc53a388e2f/dbcollection-0.1.10.tar.gz" } ], "0.1.11": [ { "comment_text": "", "digests": { "md5": "0f912064d9d770d5f6905ce7ddbb418d", "sha256": "9f2c11928e598862f20bb4fef0bb5a7e7da423ae8c54c87385a5c93baba2bcc0" }, "downloads": -1, "filename": "dbcollection-0.1.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0f912064d9d770d5f6905ce7ddbb418d", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 11714640, "upload_time": "2017-11-03T16:53:10", "url": "https://files.pythonhosted.org/packages/ad/e3/851224ae6e681de85d3ffebdbb237d642ca2e7c1311dc4513c50c1c2faad/dbcollection-0.1.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f05d1fae7a853c4649a2db7970bdb807", "sha256": "8cb84402fac0c1f03d2091645946fc58fd7f21046665cf9b9e81f28f6d43b5ac" }, "downloads": -1, "filename": "dbcollection-0.1.11.tar.gz", "has_sig": false, "md5_digest": "f05d1fae7a853c4649a2db7970bdb807", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11467635, "upload_time": "2017-11-03T16:52:52", "url": "https://files.pythonhosted.org/packages/b1/16/c83fd33c3b5d1c81379ca8ed16f66ac3f287a1c5287e5fb9ea722a538212/dbcollection-0.1.11.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "72fb58f381339df41aa16bc43dbcfcfb", "sha256": "4e6da197e73e7d8b218b2cfd83b3fb6cad56aa0bc2ddc79c1544777866cb44b1" }, "downloads": -1, "filename": "dbcollection-0.1.2.tar.gz", "has_sig": false, "md5_digest": "72fb58f381339df41aa16bc43dbcfcfb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 178179, "upload_time": "2017-05-30T15:27:16", "url": "https://files.pythonhosted.org/packages/a8/b5/fb79b5851fdacfd1ccece5426227f65573df9ae3c9bdfaf79dff9331c1ae/dbcollection-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "348cd3dd7f069c7e435ffbe24472c8c1", "sha256": "1e5e6fda307659315e975d7992bb7548b1a84956e9b2c2ffd0c1a893fe71b209" }, "downloads": -1, "filename": "dbcollection-0.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "348cd3dd7f069c7e435ffbe24472c8c1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 294827, "upload_time": "2017-06-05T09:09:29", "url": "https://files.pythonhosted.org/packages/80/7b/1f305be1fdf5da5e925f956d8b194ab4ed1ef90d2efe91e7de9bbce1d8ce/dbcollection-0.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f72d3e2f179a99fc338a176ab614e86d", "sha256": "23a5109ecb8e0c09764b235db19004483037844208e70415b7465eaec4ef629a" }, "downloads": -1, "filename": "dbcollection-0.1.3.tar.gz", "has_sig": false, "md5_digest": "f72d3e2f179a99fc338a176ab614e86d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 178166, "upload_time": "2017-05-30T15:31:26", "url": "https://files.pythonhosted.org/packages/36/ab/4326c8fd76bcbafcf99205dcbb72f1430182a85b6857342f5e614cacb79e/dbcollection-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "49d6d6d8c290fccd1c2dcf1c398740a3", "sha256": "bcfcc04cdd47c64f3e8411dc62624a7b902eea61eedad6d2bf7a70d926ac80d7" }, "downloads": -1, "filename": "dbcollection-0.1.4.tar.gz", "has_sig": false, "md5_digest": "49d6d6d8c290fccd1c2dcf1c398740a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 178359, "upload_time": "2017-07-10T11:44:56", "url": "https://files.pythonhosted.org/packages/97/36/6e09b559a28e54af852f0993e6b9448d4b16cc7dffa0ecdfcedb7614cb39/dbcollection-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "1714c0d1080df14a095928301481f285", "sha256": "d4eff94c5eb60a9152e869b641d421ac26ad7b7c23ced605e0ba3442288cc189" }, "downloads": -1, "filename": "dbcollection-0.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1714c0d1080df14a095928301481f285", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 316141, "upload_time": "2017-07-10T13:26:38", "url": "https://files.pythonhosted.org/packages/2c/6a/e2c3c1ec21e270be2b4cd7ed3e56da2c0abc78ef70551b37ce415253db1b/dbcollection-0.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "61348c01b62f1a32fc44a5a683a6d761", "sha256": "7e7f6b29c3f7914225b36f2c7375f3ab5304bbc0a42954e091bcc23454b6f6ba" }, "downloads": -1, "filename": "dbcollection-0.1.5.tar.gz", "has_sig": false, "md5_digest": "61348c01b62f1a32fc44a5a683a6d761", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 178350, "upload_time": "2017-07-10T13:14:25", "url": "https://files.pythonhosted.org/packages/21/6d/f47a5f32386806bc21d2d02ad7637fa07e2ab03c9abb388524b8cc3991f9/dbcollection-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "e2b395727ed9042562ca7ffdab61e334", "sha256": "322fe11c357511497bc16e61f79e036589a9b2ee36b86e100a474f1cb59984ce" }, "downloads": -1, "filename": "dbcollection-0.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e2b395727ed9042562ca7ffdab61e334", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 321344, "upload_time": "2017-07-20T10:21:07", "url": "https://files.pythonhosted.org/packages/6b/93/53e18e51f1ba93f3f77030451a69fe72a0ea07124ff1bd42b639717b3a37/dbcollection-0.1.6-py2.py3-none-any.whl" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "0c1daa1e502e018f2cf9495569cc3e77", "sha256": "965b15f6271f4649adca9bcdd2f9ca8b827e0c846ec91257bbe5ac90ecb8b059" }, "downloads": -1, "filename": "dbcollection-0.1.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0c1daa1e502e018f2cf9495569cc3e77", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 323408, "upload_time": "2017-07-28T16:21:36", "url": "https://files.pythonhosted.org/packages/ef/e4/3d50975523c4c3260ee4dd44bd0cd3e80ec423cfbdf0c2225f6a62ce2f39/dbcollection-0.1.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fa36e34966929427d0dd039014f5f090", "sha256": "0aca9cff8b18e6b7036fb4279e5196ac383158e1b53fbef437a4841e7536768d" }, "downloads": -1, "filename": "dbcollection-0.1.7.tar.gz", "has_sig": false, "md5_digest": "fa36e34966929427d0dd039014f5f090", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 184201, "upload_time": "2017-07-28T16:21:33", "url": "https://files.pythonhosted.org/packages/d9/73/4d62cf89800bf8d0c7bc8e1e142de4351fa8ae51b7af7dc932ded88cbce8/dbcollection-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "f944ed6d42a044b56370dec429d9fc48", "sha256": "dffdf01f5cc513ce57af550125d9b979072d1683af64f1384097c0183fc93611" }, "downloads": -1, "filename": "dbcollection-0.1.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f944ed6d42a044b56370dec429d9fc48", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 513447, "upload_time": "2017-10-16T10:26:18", "url": "https://files.pythonhosted.org/packages/36/1e/062fdd7520af946496936bd6fae620650f6568cf779a0fbbee1d5d637b27/dbcollection-0.1.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d5fc23ade3dc9b959801e13febcdd673", "sha256": "7d740abcd7476ea8f72f14442ba7779621491def7b076e12934149d8c8223ad5" }, "downloads": -1, "filename": "dbcollection-0.1.8.tar.gz", "has_sig": false, "md5_digest": "d5fc23ade3dc9b959801e13febcdd673", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 192678, "upload_time": "2017-10-16T10:26:14", "url": "https://files.pythonhosted.org/packages/36/35/05be8def3c015af189c9bfd0857a9d0349f98b0370db3a5f54911ef8efa3/dbcollection-0.1.8.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "08bd6428c64742acc11c9b02dae209e7", "sha256": "c30fe8f2836734428387c0c6b959cd4c864e95e7739562e763642b23316ef91e" }, "downloads": -1, "filename": "dbcollection-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "08bd6428c64742acc11c9b02dae209e7", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 11714633, "upload_time": "2017-11-10T12:03:04", "url": "https://files.pythonhosted.org/packages/ac/59/f2fe806163d121a5cf912e0dc65c2190bbe80a76ac4ef03e98de83666187/dbcollection-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d005455562f9db7073b0d813275202a1", "sha256": "484fcd7f429a7cecaa37a031dabdb054032cdcd90410e2f6c9650988a17553e3" }, "downloads": -1, "filename": "dbcollection-0.2.0.tar.gz", "has_sig": false, "md5_digest": "d005455562f9db7073b0d813275202a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11467654, "upload_time": "2017-11-10T12:02:55", "url": "https://files.pythonhosted.org/packages/0c/13/ed2dac97c2ca144ec2045f5a384ce10f2baec4ed2f13e184d8546c64d432/dbcollection-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "fad66c638b4fa3a8569ddafb7c20f42a", "sha256": "a4a4f2beb5e47755365db2fd5d9dfabbd3054aee20fa9956c315216446a92c3d" }, "downloads": -1, "filename": "dbcollection-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fad66c638b4fa3a8569ddafb7c20f42a", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 11749084, "upload_time": "2018-01-19T22:37:38", "url": "https://files.pythonhosted.org/packages/c3/9d/06a53d49435274790079d5247a93b723191681cbe96af49fdc395281d913/dbcollection-0.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8cd0b81a0b38d7f4124822e6a71627c5", "sha256": "2ce0ca12f554edf73614b2284dc64a8e553eb8aac5ed2d9a5d7461958523de93" }, "downloads": -1, "filename": "dbcollection-0.2.1.tar.gz", "has_sig": false, "md5_digest": "8cd0b81a0b38d7f4124822e6a71627c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11482597, "upload_time": "2018-01-19T22:37:30", "url": "https://files.pythonhosted.org/packages/fa/07/0a47ee1d1f196ae51d85850bb0b87a4d45f98e44d6ee220d220e674ba843/dbcollection-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "6aa4370e3f583d428089f8e5054dfeac", "sha256": "4ef99e761c5193ba2c191f541cb9db84e26fc506826158b06d061c5c95b0e767" }, "downloads": -1, "filename": "dbcollection-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6aa4370e3f583d428089f8e5054dfeac", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 11780971, "upload_time": "2018-05-07T21:50:04", "url": "https://files.pythonhosted.org/packages/a2/ff/de240036861562a9599b0f61d1f7281643b07b53ba4e0f8fe7a1bf3e7dc0/dbcollection-0.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e3bde0b2faa86c20197b356851b77ebf", "sha256": "a04e67e1a4f9ae5b6b5fe74d08d3a4d2db54abb0997e7f163318de8392510354" }, "downloads": -1, "filename": "dbcollection-0.2.2.tar.gz", "has_sig": false, "md5_digest": "e3bde0b2faa86c20197b356851b77ebf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11502912, "upload_time": "2018-05-07T21:49:56", "url": "https://files.pythonhosted.org/packages/3d/62/91072ceffe753add999b9f9bc5e91b343d28579f256780efcc21a6f250ff/dbcollection-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "dd4ef671537211a3f34360e19a92a671", "sha256": "3da00a5ec0ed62a6c4484c46e04dea93001da24a8a5ea62b907696065dcc0a45" }, "downloads": -1, "filename": "dbcollection-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dd4ef671537211a3f34360e19a92a671", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 11758356, "upload_time": "2018-05-15T22:37:32", "url": "https://files.pythonhosted.org/packages/77/05/1a13d5ffe6c5d8b9ef680c76bd4bc9eb1335d4ba22c592a566ad5452db6d/dbcollection-0.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "59dd6257ebc2a485f48d056a262abf3d", "sha256": "656270eccb7ae38a269cd39de4b7fe7e41672db615f286a7e787ed7958af047b" }, "downloads": -1, "filename": "dbcollection-0.2.3.tar.gz", "has_sig": false, "md5_digest": "59dd6257ebc2a485f48d056a262abf3d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11506313, "upload_time": "2018-05-15T22:37:24", "url": "https://files.pythonhosted.org/packages/81/b8/e0049d9617dc3aea8181a84035fa4da6bd311ca82494a5b267b951f3b826/dbcollection-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "8d99409df04035ec993e90a83a1827e4", "sha256": "ef28dd87f321c5494290d007ef65d74f60ee61311cc93bf1a35aca1cede07d72" }, "downloads": -1, "filename": "dbcollection-0.2.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8d99409df04035ec993e90a83a1827e4", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 11772184, "upload_time": "2018-06-09T17:32:39", "url": "https://files.pythonhosted.org/packages/f6/96/d6fdd115e2b0e7573e7c52fa9315ba67e36b88edc3d14a9638e7aa702a65/dbcollection-0.2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d4b7f042748641450a55d2eba7ec4e4a", "sha256": "f26bb779ddb0a55d09e1f05e1236f12343e2c30002af2c8a32b68ad2e35faf30" }, "downloads": -1, "filename": "dbcollection-0.2.4.tar.gz", "has_sig": false, "md5_digest": "d4b7f042748641450a55d2eba7ec4e4a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11516643, "upload_time": "2018-06-09T17:32:30", "url": "https://files.pythonhosted.org/packages/fa/ef/7fc20a21204c21628a2b1dd4ff796cf38b8a4867b25b982ea6856ec58178/dbcollection-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "e29de4c656b5d855c6212a070948f163", "sha256": "1654e14dedee6c06631cce8287fd34f2f3f03acc3400c5361fa00c8f92c33187" }, "downloads": -1, "filename": "dbcollection-0.2.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e29de4c656b5d855c6212a070948f163", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 11778920, "upload_time": "2018-06-16T18:55:30", "url": "https://files.pythonhosted.org/packages/64/5c/7f32c3476d7afb2342835f702d8738508bb49829e891671415c82ff67aad/dbcollection-0.2.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "79bd7375831930cc553679ec6cb8afbe", "sha256": "1d5919b6733bf2abb0d074567ddb8128220b3e7de3a1ff6c969389da207a187b" }, "downloads": -1, "filename": "dbcollection-0.2.5.tar.gz", "has_sig": false, "md5_digest": "79bd7375831930cc553679ec6cb8afbe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11519618, "upload_time": "2018-06-16T18:55:20", "url": "https://files.pythonhosted.org/packages/64/f5/36260c3950496c645c5c96de30acd318c74393a504fa22e77c00fbd05bf9/dbcollection-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "a1a7fe0f2eaea4d992f31ca7af168857", "sha256": "d31376b5e297b32f6ca36d0087248f4809d6e27b9cf3d952fd18eaa944238079" }, "downloads": -1, "filename": "dbcollection-0.2.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a1a7fe0f2eaea4d992f31ca7af168857", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 11834923, "upload_time": "2018-07-26T23:21:39", "url": "https://files.pythonhosted.org/packages/85/42/9a5704839c923a2cc53170be8ae92bcbae6ef2288f3f270142169e7cbe5a/dbcollection-0.2.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b8d54a23b7c82ca2a9df10b377b9c46e", "sha256": "fea831d5f52e5dfca5dc266565a430a43c1a0ad66b18b05f2ce06353e48b85bc" }, "downloads": -1, "filename": "dbcollection-0.2.6.tar.gz", "has_sig": false, "md5_digest": "b8d54a23b7c82ca2a9df10b377b9c46e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11580179, "upload_time": "2018-07-26T23:21:32", "url": "https://files.pythonhosted.org/packages/e4/59/356f07f6653e94d7738c90a83cba84001a3d011b2f7b3dab7c947927b886/dbcollection-0.2.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a1a7fe0f2eaea4d992f31ca7af168857", "sha256": "d31376b5e297b32f6ca36d0087248f4809d6e27b9cf3d952fd18eaa944238079" }, "downloads": -1, "filename": "dbcollection-0.2.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a1a7fe0f2eaea4d992f31ca7af168857", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 11834923, "upload_time": "2018-07-26T23:21:39", "url": "https://files.pythonhosted.org/packages/85/42/9a5704839c923a2cc53170be8ae92bcbae6ef2288f3f270142169e7cbe5a/dbcollection-0.2.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b8d54a23b7c82ca2a9df10b377b9c46e", "sha256": "fea831d5f52e5dfca5dc266565a430a43c1a0ad66b18b05f2ce06353e48b85bc" }, "downloads": -1, "filename": "dbcollection-0.2.6.tar.gz", "has_sig": false, "md5_digest": "b8d54a23b7c82ca2a9df10b377b9c46e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11580179, "upload_time": "2018-07-26T23:21:32", "url": "https://files.pythonhosted.org/packages/e4/59/356f07f6653e94d7738c90a83cba84001a3d011b2f7b3dab7c947927b886/dbcollection-0.2.6.tar.gz" } ] }