{ "info": { "author": "Maykin Media, Joeri Bekker, Jorik Kraaikamp, Sergei Maertens, Silvia Amabilino", "author_email": "support@maykinmedia.nl", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Framework :: Django", "Framework :: Django :: 2.2", "Framework :: Django :: 3.2", "Intended Audience :: Developers", "Operating System :: MacOS", "Operating System :: Microsoft :: Windows", "Operating System :: Unix", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "===========================\nDocumenten API CMIS adapter\n===========================\n\n:Version: 1.3.0\n:Source: https://github.com/open-zaak/cmis-adapter\n:Keywords: CMIS, Documenten API, VNG, Common Ground\n:PythonVersion: 3.7\n\n|build-status| |coverage| |linting| |black| |python-versions| |django-versions| |pypi-version|\n\nA CMIS backend-connector for the `Documenten API`_.\n\nDeveloped by `Maykin Media B.V.`_ commissioned by the municipality of Utrecht\nwith support of the municipality of S\u00fadwest-Frysl\u00e2n and the Open Zaak project\nteam.\n\n\nIntroduction\n============\n\nThe Documenten API CMIS adapter allows Django implementations of the Documenten\nAPI to easily connect to a CMIS-compatible Document Management System (DMS).\nMost notably it's used by `Open Zaak`_ to use a DMS as backend for the\nDocumenten API rather then using its own backend.\n\n.. _`Open Zaak`: https://github.com/open-zaak/open-zaak/\n\nFeatures\n--------\n\nBoth `CMIS 1.0`_ and `CMIS 1.1`_ are supported but not for all bindings. Below\nis a list of supported bindings for each CMIS version.\n\n.. _`CMIS 1.0`: https://docs.oasis-open.org/cmis/CMIS/v1.0/cmis-spec-v1.0.html\n.. _`CMIS 1.1`: https://docs.oasis-open.org/cmis/CMIS/v1.1/CMIS-v1.1.html\n\n+----------------------+-----------+-----------+\n| | CMIS 1.0 | CMIS 1.1 |\n+======================+===========+===========+\n| Web Services binding | Supported | Untested |\n+----------------------+-----------+-----------+\n| AtomPub binding | Untested | Untested |\n+----------------------+-----------+-----------+\n| Browser binding | N/A | Supported |\n+----------------------+-----------+-----------+\n\nFor the supported bindings, the following features are implemented:\n\n* Retrieve from and store documents in a CMIS-compatible DMS.\n* Supports reading and writing of documents.\n* Supports checking out/in of documents.\n* Supports custom data-model for storing additional meta data.\n\nTested against:\n\n* `Corsa platform`_ using CMIS 1.0 Web Services binding (Thanks to `BCT`_)\n* `Alfresco`_ Enterprise 5.2.3 using CMIS 1.1 Browser binding (Thanks to\n `Contezza`_)\n* `Alfresco CE 6.1.2-ga`_ (Used for CI)\n\n.. _`Corsa platform`: https://www.bctsoftware.com/corsa/\n.. _`BCT`: https://www.bctsoftware.com/\n.. _`Contezza`: https://contezza.nl/\n.. _`Alfresco CE 6.1.2-ga`: https://hub.docker.com/layers/alfresco/alfresco-content-repository-community/6.1.2-ga/images/sha256-6edaf25aded1b16991f06be7754a7030c9d67429353e39ce1da3fd307a5f2e6f?context=explore\n\n\nInstallation\n============\n\n**NOTE: If you are using Open Zaak 1.3.1 or above, the CMIS-adapter is already\nincluded and does not require separate installation.**\n\nRequirements\n------------\n\n* Python 3.7 or above\n* setuptools 30.3.0 or above\n* Django 2.2 or newer\n\nInstall\n-------\n\n1. Install the library in your Django project:\n\n.. code-block:: bash\n\n $ pip install drc-cmis\n\n2. Add to ``INSTALLED_APPS`` in your Django ``settings.py``:\n\n.. code-block:: python\n\n INSTALLED_APPS = [\n ...\n \"drc_cmis\",\n ...\n ]\n\n3. Create a mapping file to match Documenten API attributes to custom\n properties in your DMS model. See `Mapping configuration`_.\n\n4. In your ``settings.py``, add these settings to enable it:\n\n.. code-block:: python\n\n # Enables the CMIS-backend and the Django admin interface for configuring\n # the DMS settings.\n CMIS_ENABLED = True\n\n # Absolute path to the mapping of Documenten API attributes to (custom)\n # properties in your DMS content model.\n CMIS_MAPPER_FILE = /path/to/cmis_mapper.json\n\n5. Login to the Django admin as superuser and configure the CMIS backend.\n\nMapping configuration\n=====================\n\nThere are 2 important concepts:\n\n* Content model - The DMS configuration to store (custom) properties on folders\n and documents. These properties are called CMIS properties.\n* CMIS-mapper - a JSON-file containing the translation from Documenten API\n attributes to CMIS properties.\n\nMapping the Documenten API attributes to (custom) CMIS properties in the DMS\ncontent model should be done with great care. When the DMS stores these\nproperties, the Documenten API relies on their existance to create proper responses.\n\nBelow is a snippet of the CMIS-mapper:\n\n.. code-block:: json\n\n {\n \"DOCUMENT_MAP\": {\n \"titel\": \"drc:document__titel\"\n }\n }\n\nThe ``DOCUMENT_MAP`` describes the mapping for the\n``EnkelvoudigInformatieObject`` resource in the Documenten API. In this\nsnippet, only the ``EnkelvoudigInformatieObject.titel`` attribute is mapped to\na custom CMIS property called ``drc:document_titel``.\n\nCommunication between the Documenten API using the CMIS-adapter, is done via\nCMIS. Therefore, when creating a document via the Documenten API, the\nattributes are translated to CMIS properties as shown below (note that this is\na stripped down request example).\n\n.. code-block:: xml\n\n \n \n \n \n \n d6a10501-ef36-41e1-9aae-547154f57838\n \n \n example.txt\n \n workspace://SpacesStore/7c6c7c86-fd63-4eec-bcf8-ffb59f6f6b90\n \n \n \n\nAn example of the mapping configuration, with all possible Documenten API\nresources and attributes is shown in ``test_app/cmis_mapper.json``\n(`cmis_mapper.json`_). The related DMS content model, that has the definitions\nfor all these CMIS properties, for `Alfresco`_ (an open source DMS) is in\n``/alfresco/extension/alfreso-zsdms-model.xml`` (`alfreso-zsdms-model.xml`_).\nBoth the mapping and the model should be aligned.\n\n.. _`cmis_mapper.json`: https://github.com/open-zaak/cmis-adapter/blob/master/test_app/cmis_mapper.json\n.. _`alfreso-zsdms-model.xml`: https://github.com/open-zaak/cmis-adapter/blob/master/alfresco/extension/alfreso-zsdms-model.xml\n\nMappings\n--------\n\nThe content model and the CMIS-mapper configurations need to be aligned. For\neach object, the API resource, the CMIS objecttype, CMIS basetype and the\n(configuratble) CMIS-mapper object is described.\n\n**Document**\n\nThe document itself, its content and meta data.\n\n+-------------------------+---------------------------------+\n| Documenten API resource | ``EnkelvoudigInformatieObject`` |\n+-------------------------+---------------------------------+\n| CMIS objecttype \\* | ``drc:document`` |\n+-------------------------+---------------------------------+\n| CMIS basetype | ``cmis:document`` |\n+-------------------------+---------------------------------+\n| CMIS-mapper object | ``DOCUMENT_MAP`` |\n+-------------------------+---------------------------------+\n\nThe mapping between API-attributes and CMIS properties can be found in the `cmis_mapper.json`_.\n\n**Gebruiksrechten**\n\nUsage rights. These rights don't need to be enforced by the DMS but are stored\nfor use outside the DMS.\n\n+-------------------------+---------------------------------+\n| Documenten API resource | ``Gebruiksrechten`` |\n+-------------------------+---------------------------------+\n| CMIS objecttype \\* | ``drc:gebruiksrechten`` |\n+-------------------------+---------------------------------+\n| CMIS basetype | ``cmis:document`` |\n+-------------------------+---------------------------------+\n| CMIS-mapper object | ``GEBRUIKSRECHTEN_MAP`` |\n+-------------------------+---------------------------------+\n\nThe mapping between API-attributes and CMIS properties can be found in the `cmis_mapper.json`_.\n\n**ObjectInformatieObject**\n\nRelation between a document and another object, like a Zaak, Besluit or\nsomething else.\n\n+-------------------------+---------------------------------+\n| Documenten API resource | ``ObjectInformatieObject`` |\n+-------------------------+---------------------------------+\n| CMIS objecttype \\* | ``drc:oio`` |\n+-------------------------+---------------------------------+\n| CMIS basetype | ``cmis:document`` |\n+-------------------------+---------------------------------+\n| CMIS-mapper object | ``OBJECTINFORMATIEOBJECT_MAP`` |\n+-------------------------+---------------------------------+\n\nThe mapping between API-attributes and CMIS properties can be found in the `cmis_mapper.json`_.\n\n**Zaaktype folder**\n\nContains all Zaken from this Zaaktype and has itself some meta data about the\nZaaktype. API-attributes are from the `Catalogi API`_ ``Zaaktype``-resource.\n\n.. _`Catalogi API`: https://vng-realisatie.github.io/gemma-zaken/standaard/catalogi/index\n\n+-------------------------+---------------------------------+\n| Catalogi API resource | ``Zaaktype`` |\n+-------------------------+---------------------------------+\n| CMIS objecttype \\* | ``drc:zaaktypefolder`` |\n+-------------------------+---------------------------------+\n| CMIS basetype | ``cmis:folder`` |\n+-------------------------+---------------------------------+\n| CMIS-mapper object | ``ZAAKTYPE_MAP`` |\n+-------------------------+---------------------------------+\n\nThe mapping between API-attributes and CMIS properties can be found in the `cmis_mapper.json`_.\n\n**Zaak folder**\n\nContains all Zaak-related documents and has itself some meta data about the\nZaak. API-attributes are from the `Zaken API`_ ``Zaak``-resource.\n\n.. _`Zaken API`: https://vng-realisatie.github.io/gemma-zaken/standaard/zaken/index\n\n+-------------------------+---------------------------------+\n| Zaken API resource | ``Zaak`` |\n+-------------------------+---------------------------------+\n| CMIS objecttype \\* | ``drc:zaakfolder`` |\n+-------------------------+---------------------------------+\n| CMIS basetype | ``cmis:folder`` |\n+-------------------------+---------------------------------+\n| CMIS-mapper object | ``ZAAK_MAP`` |\n+-------------------------+---------------------------------+\n\nThe mapping between API-attributes and CMIS properties can be found in the `cmis_mapper.json`_.\n\n\\* CMIS objecttype: ``cmis:objectTypeId``\n\nDMS Content model configuration\n-------------------------------\n\nThe CMIS mapper configuration must match the content model in the DMS. Each\nproperty, like ``drc:document__titel`` in the example above, must be defined\nin the content model.\n\nThe example shown in ``/alfresco/extension/alfreso-zsdms-model.xml``\nindicates all attributes, types and whether the property is indexed (queryable)\nor not. If these attributes are incorrectly configured, the Documenten API\nmight not work correctly.\n\nDMS folder structure\n--------------------\n\nOpen Zaak uses a folder structure in the DMS similar to the\n`Zaak- en Documentservices 1.2`_. However, due to way the Documenten API works\nthere are differences.\n\n.. _`Zaak- en Documentservices 1.2`: https://www.gemmaonline.nl/index.php/Zaak-_en_Documentservices\n\n**Creating a document**\n\nWhen a document is created via the Documenten API, the document is placed in a\ntemporary folder. By default this is:\n\n.. code-block::\n\n CMIS Root\n +-- DRC (cmis:folder)\n +-- [year] (cmis:folder)\n +-- [month] (cmis:folder)\n +-- [day] (cmis:folder)\n +-- [filename] (drc:document)\n\nFor example:\n\n.. code-block::\n\n CMIS Root > DRC > 2020 > 12 > 31 > document.txt\n\nIf nothing else happens, this document will remain here.\n\n**Creating gebruiksrechten**\n\nA document can have Gebruiksrechten. These are stored as a separate document\n(``gebruiksrechten``) in a folder called ``Related data``. This folder is\nalways in the same folder as the document itself and is of type ``cmis:folder``.\n\nThe Gebruiksrechten will always be moved or copied along with the document.\n\nFor example:\n\n.. code-block::\n\n CMIS Root > DRC > 2020 > 12 > 31 > document.txt\n CMIS Root > DRC > 2020 > 12 > 31 > Related data > document.txt-gebruiksrechten\n\n**Relating a document to a Zaak**\n\nRelating a document to a Zaak (by creating an ``ObjectInformatieObject``\ninstance in the Documenten API) will cause the document and its Gebruiksrechten\nif it exists, to be **moved** or **copied** to the zaak folder.\n\n.. code-block::\n\n CMIS Root\n +-- DRC (cmis:folder)\n +-- [zaaktype-folder] (drc:zaaktypefolder)\n +-- [year] (cmis:folder)\n +-- [month] (cmis:folder)\n +-- [day] (cmis:folder)\n +-- [zaak-folder] (drc:zaakfolder)\n +-- [filename] (drc:document)\n +-- Related data (cmis:folder)\n +-- [filename]-gebruiksrechten (drc:gebruiksrechten)\n +-- [filename]-oio (drc:oio)\n\nA document is **moved** when the document was **not related** to a Zaak before\n(and thus it was in the temporary folder). The document is **copied** to the\nnew zaak folder when the document was **already related** to a Zaak.\n\nThe relation of a document to a Zaak is implicitly described by its path. In\naddition however, this relation is stored as a separate document (``oio``) in\nthe ``Related data`` folder.\n\nFor example:\n\n.. code-block::\n\n CMIS Root > DRC > Melding Openbare Ruimte > 2020 > 12 > 31 > ZAAK-0000001 > document.txt\n CMIS Root > DRC > Melding Openbare Ruimte > 2020 > 12 > 31 > ZAAK-0000001 > Related data > document.txt-gebruiksrechten\n CMIS Root > DRC > Melding Openbare Ruimte > 2020 > 12 > 31 > ZAAK-0000001 > Related data > document.txt-oio\n\n**Relating a document to a Besluit**\n\nWhen a document is related to a Besluit, there's a few different scenario's:\n\n1. The Besluit is **related** to a Zaak and...\n\n 1. The document is **not related** to a Zaak (and thus the document is in\n the temporary folder): The document is **moved** to the Zaak folder of\n the Zaak that is related to the Besluit.\n 2. The document is **already related** to a Zaak: The document is **copied**\n to the new Zaak folder.\n\n2. The Besluit is **not related** to a Zaak and...\n\n 1. The document is **not related** to a Zaak: The document **stays** in its\n temporary folder.\n 2. The document is **related** to a Zaak: The document is **copied** to the\n temporary folder.\n\nIn all cases, the relation of a document to a Besluit is stored as a separate\ndocument (``oio``) in the ``Related data`` folder, relative to wherever the new\ndocument is stored.\n\n**Relating a document to another object**\n\nWhen a document is related to any other object, the document is not moved or\ncopied and stays in its temporary folder.\n\nDMS folder structure overview\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nYou can configure the folders used by the CMIS adapter via the admin interface.\nSome folders are templated (indicated with ``{{ }}``) which means their value\ndepends on the current date or the related Zaak.\n\nA complete overview of all default folders and documents are shown below:\n\n**Zaak folder path**\n\nStorage location for documents related to a Zaak.\n\nDefault: ``/DRC/{{ zaaktype }}/{{ year }}/{{ month }}/{{ day }}/{{ zaak }}/``\n\n.. code-block::\n\n CMIS Root\n +-- DRC (cmis:folder)\n +-- [zaaktype-folder] (drc:zaaktypefolder)\n +-- [year] (cmis:folder)\n +-- [month] (cmis:folder)\n +-- [day] (cmis:folder)\n +-- [zaak-folder] (drc:zaakfolder)\n +-- [filename] (drc:document)\n +-- Related data (cmis:folder)\n +-- [filename]-gebruiksrechten (drc:gebruiksrechten)\n +-- [filename]-oio (drc:oio)\n\nYou can for example change this to: ``/DRC/{{ zaaktype }}/{{ zaak }}/`` to\nremove the year/month/day folder structure entirely.\n\n**Other folder path**\n\nStorage location for documents not (yet) related to a Zaak.\n\nDefault: ``/DRC/{{ year }}/{{ month }}/{{ day }}/``\n\n.. code-block::\n\n CMIS Root\n +-- DRC (cmis:folder)\n +-- [year] (cmis:folder)\n +-- [month] (cmis:folder)\n +-- [day] (cmis:folder)\n +-- [filename] (drc:document)\n +-- Related data (cmis:folder)\n +-- [filename]-gebruiksrechten (drc:gebruiksrechten)\n +-- [filename]-oio (drc:oio)\n\n\nReferences\n==========\n\n* `Issues `_\n* `Code `_\n\n\nLicense\n=======\n\nCopyright \u00a9 Dimpact 2019 - 2020\n\nLicensed under the EUPL_\n\n.. _EUPL: LICENCE.md\n\n.. _`Maykin Media B.V.`: https://www.maykinmedia.nl\n\n.. _`Alfresco`: https://www.alfresco.com/ecm-software/alfresco-community-editions\n\n.. |build-status| image:: https://github.com/open-zaak/cmis-adapter/workflows/Run%20CI/badge.svg\n :target: https://github.com/open-zaak/cmis-adapter/actions?query=workflow%3A%22Run+CI%22\n :alt: Run CI\n\n.. |linting| image:: https://github.com/open-zaak/cmis-adapter/workflows/Code%20quality%20checks/badge.svg\n :target: https://github.com/open-zaak/cmis-adapter/actions?query=workflow%3A%22Code+quality+checks%22\n :alt: Code linting\n\n.. |coverage| image:: https://codecov.io/gh/open-zaak/cmis-adapter/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/open-zaak/cmis-adapter\n :alt: Coverage status\n\n.. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg\n :target: https://github.com/psf/black\n\n.. |python-versions| image:: https://img.shields.io/pypi/pyversions/drc-cmis.svg\n\n.. |django-versions| image:: https://img.shields.io/pypi/djversions/drc-cmis.svg\n\n.. |pypi-version| image:: https://img.shields.io/pypi/v/drc-cmis.svg\n :target: https://pypi.org/project/drc-cmis/\n\n.. _Documenten API: https://vng-realisatie.github.io/gemma-zaken/standaard/documenten/index\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/open-zaak/cmis-adapter", "keywords": "CMIS,Documenten API,VNG,Common Ground", "license": "EUPL-1.2", "maintainer": "", "maintainer_email": "", "name": "drc-cmis", "package_url": "https://pypi.org/project/drc-cmis/", "platform": null, "project_url": "https://pypi.org/project/drc-cmis/", "project_urls": { "Homepage": "https://github.com/open-zaak/cmis-adapter" }, "release_url": "https://pypi.org/project/drc-cmis/1.3.0/", "requires_dist": [ "django (<4.0,>=2.2.0)", "django-choices", "cmislib-maykin (>=0.7.2.dev0)", "django-solo", "iso8601", "vng-api-common", "python-decouple", "pytest-cov ; extra == 'coverage'", "sphinx ; extra == 'docs'", "sphinx-rtd-theme ; extra == 'docs'", "flake8 ; extra == 'pep8'", "bumpversion ; extra == 'release'", "twine ; extra == 'release'", "pytest ; extra == 'tests'", "pytest-django ; extra == 'tests'", "tox ; extra == 'tests'", "isort ; extra == 'tests'", "black ; extra == 'tests'", "factory-boy (>=3.0.0) ; extra == 'tests'", "psycopg2 ; extra == 'tests'", "responses ; extra == 'tests'", "freezegun ; extra == 'tests'", "requests-mock ; extra == 'tests'" ], "requires_python": "", "summary": "An adapter to manage Documenten API resources in a CMIS backend.", "version": "1.3.0", "yanked": false, "yanked_reason": null }, "last_serial": 13136780, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "8cdfb1bd9f17ec7cb06172d2ab028aa9", "sha256": "678d7f8e9d322236a115db9b81b5173e2aba1c348f42a5f49965ad64e3f8a2c5" }, "downloads": -1, "filename": "drc_cmis-0.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8cdfb1bd9f17ec7cb06172d2ab028aa9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17471, "upload_time": "2019-05-01T14:19:38", "upload_time_iso_8601": "2019-05-01T14:19:38.671292Z", "url": "https://files.pythonhosted.org/packages/e5/a5/74e4ee6d17d613aaf3bd3026d8e26f592a647a99029dae5e308c8ba15b1a/drc_cmis-0.0.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "76e4e8cf1230a0a893fd825f32db8b9e", "sha256": "9aaf22f56de051adba07e858a4ea07626393b1c4bf1e107510d89ca3cdec20d7" }, "downloads": -1, "filename": "drc_cmis-0.0.1.tar.gz", "has_sig": false, "md5_digest": "76e4e8cf1230a0a893fd825f32db8b9e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27803, "upload_time": "2019-05-01T14:19:40", "upload_time_iso_8601": "2019-05-01T14:19:40.954778Z", "url": "https://files.pythonhosted.org/packages/28/d4/eb88d8321c84eeaccf23182416e8f862f580258782d0573c8954e1461258/drc_cmis-0.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "3d2cdf03f8995df7fa40f7d9fd061c90", "sha256": "04aca135d81da02c206e392b4576ee810691e489e71b732ae7670199e8c2dc94" }, "downloads": -1, "filename": "drc_cmis-0.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3d2cdf03f8995df7fa40f7d9fd061c90", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17591, "upload_time": "2019-05-06T09:34:29", "upload_time_iso_8601": "2019-05-06T09:34:29.317627Z", "url": "https://files.pythonhosted.org/packages/c8/34/95e46dcd27b2dd0eeaee385da20fdaa1aad81e38ca00a8ef2c5e065ad7b2/drc_cmis-0.0.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ff6d0bc4190ed4912f0a2c4c8a5b86d", "sha256": "15c94dd6f6961f1feff0dc6eec49d4e18b4437ad593a26ade73b5cf1ac0022e8" }, "downloads": -1, "filename": "drc_cmis-0.0.2.tar.gz", "has_sig": false, "md5_digest": "2ff6d0bc4190ed4912f0a2c4c8a5b86d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27922, "upload_time": "2019-05-06T09:34:30", "upload_time_iso_8601": "2019-05-06T09:34:30.687833Z", "url": "https://files.pythonhosted.org/packages/da/75/7a95036c445e87f1db035a0c51d56d6c7f099ce93950028e83d89e2c33d3/drc_cmis-0.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "72b72c201ad4a257f5d352b5560416af", "sha256": "6fd37ab284a483b945ee0554934254297a74a1657709df10ea9c6798e3fd8134" }, "downloads": -1, "filename": "drc_cmis-0.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "72b72c201ad4a257f5d352b5560416af", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17608, "upload_time": "2019-05-06T12:52:51", "upload_time_iso_8601": "2019-05-06T12:52:51.995531Z", "url": "https://files.pythonhosted.org/packages/27/c8/5955bd4aff9c75dcb7bcc9c99c70b734bd37ec5af217d9ae74224e8fa2b3/drc_cmis-0.0.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9946991a8913c1bc05fc37257739df23", "sha256": "ed0369aeddad9e6d5ad4237f84c2b37e7c57f3c314b90beeae03e210b48780cf" }, "downloads": -1, "filename": "drc_cmis-0.0.3.tar.gz", "has_sig": false, "md5_digest": "9946991a8913c1bc05fc37257739df23", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19084, "upload_time": "2019-05-06T12:52:53", "upload_time_iso_8601": "2019-05-06T12:52:53.297442Z", "url": "https://files.pythonhosted.org/packages/42/81/1fc63d89a1e5ac4c9f4055cdd1bf243ed9877e37e8df7bea236032952750/drc_cmis-0.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "679081708f8e6153c02a428cf5807db5", "sha256": "cfd2ec1b9aa9177b2f804cbf67b9cc4b85fcd361e405ab60a51f382a13c6347f" }, "downloads": -1, "filename": "drc_cmis-0.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "679081708f8e6153c02a428cf5807db5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20841, "upload_time": "2019-05-06T13:15:10", "upload_time_iso_8601": "2019-05-06T13:15:10.502787Z", "url": "https://files.pythonhosted.org/packages/da/a0/0425f3a7677c6ee06be75f7f8754d476527663cc33af93720ee7dce37e40/drc_cmis-0.0.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2623f56a570ed19370bf3e5ea4d2251b", "sha256": "f84580e74ddb0d801328588bca2db90ca8b372faa71625b13b99d2873cafe203" }, "downloads": -1, "filename": "drc_cmis-0.0.4.tar.gz", "has_sig": false, "md5_digest": "2623f56a570ed19370bf3e5ea4d2251b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20400, "upload_time": "2019-05-06T13:15:11", "upload_time_iso_8601": "2019-05-06T13:15:11.583028Z", "url": "https://files.pythonhosted.org/packages/80/e9/01eed6505fa03899ba111e4e4c8d48acffc015d265a97d2e50d6c2ecd1f0/drc_cmis-0.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "e7a93310db20f4425c9f26c65b634636", "sha256": "d6272f872511734e00287f51aa31ed6e003adc7e82c3ab0d48fc5d57fab19276" }, "downloads": -1, "filename": "drc_cmis-0.0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e7a93310db20f4425c9f26c65b634636", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21681, "upload_time": "2019-05-06T14:32:57", "upload_time_iso_8601": "2019-05-06T14:32:57.285679Z", "url": "https://files.pythonhosted.org/packages/82/59/1368c0edfe7a186b19300ea11180ce50dda055d25421b8703a255a6ada5f/drc_cmis-0.0.5-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3cc6610d6c91043625da510a7a1b6819", "sha256": "2ca2bb30390b0aa4deb9447fbfe124d53db375c1f0a54680a33c99e275b65eb9" }, "downloads": -1, "filename": "drc_cmis-0.0.5.tar.gz", "has_sig": false, "md5_digest": "3cc6610d6c91043625da510a7a1b6819", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20800, "upload_time": "2019-05-06T14:32:58", "upload_time_iso_8601": "2019-05-06T14:32:58.568890Z", "url": "https://files.pythonhosted.org/packages/60/ee/a9c23cd8c7bfbe892e396302ecf575d9dc8889397edf66b4fdc6d6a95e6c/drc_cmis-0.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "0a8944e2c103b06c8db781ea42cc9673", "sha256": "a883bea16bce22c76035abc19602ef41e14e1eeeb52e25ee00991878364556c5" }, "downloads": -1, "filename": "drc_cmis-0.0.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0a8944e2c103b06c8db781ea42cc9673", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21406, "upload_time": "2019-05-14T11:47:59", "upload_time_iso_8601": "2019-05-14T11:47:59.558185Z", "url": "https://files.pythonhosted.org/packages/40/ae/16fa26afed52898b0dc50eaf1877114fe64500f4c648c479753188bcbc8c/drc_cmis-0.0.6-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e55edd447ecb0e33abe7f32e695a222c", "sha256": "e4dee11d20e0aa3fa80ef017df161a46a02d107ed62c937982473ff790aa1fd3" }, "downloads": -1, "filename": "drc_cmis-0.0.6.tar.gz", "has_sig": false, "md5_digest": "e55edd447ecb0e33abe7f32e695a222c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20466, "upload_time": "2019-05-14T11:48:01", "upload_time_iso_8601": "2019-05-14T11:48:01.113346Z", "url": "https://files.pythonhosted.org/packages/ab/2d/ea13ef808c1ef64dabf1bfc7529f70a506d089a67a6a97ffe702cc7dff62/drc_cmis-0.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "80c745905dbcb5683a4c5d476916b03c", "sha256": "731f783c2fc53d3942d88f481a49eac68b4e27fb36004d0195ab169d503930e3" }, "downloads": -1, "filename": "drc_cmis-0.0.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "80c745905dbcb5683a4c5d476916b03c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 31932, "upload_time": "2019-06-07T09:26:01", "upload_time_iso_8601": "2019-06-07T09:26:01.163054Z", "url": "https://files.pythonhosted.org/packages/a6/0a/de1259491af44ab2de467a21a2e86b755bce59504ee14e5c5fa494047bb8/drc_cmis-0.0.7-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4cd012190894e4ee665bb9faf47db0b0", "sha256": "28323adaede148502512bdc83499ca9afef011dfc4bb561f12c40799a489eec4" }, "downloads": -1, "filename": "drc_cmis-0.0.7.tar.gz", "has_sig": false, "md5_digest": "4cd012190894e4ee665bb9faf47db0b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24074, "upload_time": "2019-06-07T09:26:03", "upload_time_iso_8601": "2019-06-07T09:26:03.468448Z", "url": "https://files.pythonhosted.org/packages/a6/2a/8c26f6473f471c52cd7d711b78289d66aa9fab1ceb64b3c1ac45236d004b/drc_cmis-0.0.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "51f8d1e06097a2eae50e0422d3f81cc9", "sha256": "fcdf0a990bd021f31fecd04c8bded5445207bcf9a133b2460b20adf62fc13655" }, "downloads": -1, "filename": "drc_cmis-0.0.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "51f8d1e06097a2eae50e0422d3f81cc9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 32015, "upload_time": "2019-06-07T13:01:53", "upload_time_iso_8601": "2019-06-07T13:01:53.346194Z", "url": "https://files.pythonhosted.org/packages/bf/7c/1e88e1319b34d1df2c770d32b39c46ae112e9d97866c32922924782db341/drc_cmis-0.0.8-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "31c84dd528565180418bcc7300749e16", "sha256": "943c0f070dce2ba5c0dde6ddc5a04834a547209b13ff02b0d7b957a3956df15d" }, "downloads": -1, "filename": "drc_cmis-0.0.8.tar.gz", "has_sig": false, "md5_digest": "31c84dd528565180418bcc7300749e16", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24152, "upload_time": "2019-06-07T13:01:54", "upload_time_iso_8601": "2019-06-07T13:01:54.484955Z", "url": "https://files.pythonhosted.org/packages/19/50/ff7f56d3bf177a2027b8d21fbc514d6975744489e1e4fc2b4ac05dd96c79/drc_cmis-0.0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "2531f488f24da85907e58532c3cdfd95", "sha256": "becad1e1710467ce9ece2b3c66718645816f68d9ec9af577ea45105f859990d6" }, "downloads": -1, "filename": "drc_cmis-0.0.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2531f488f24da85907e58532c3cdfd95", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 32057, "upload_time": "2019-06-07T13:34:24", "upload_time_iso_8601": "2019-06-07T13:34:24.022204Z", "url": "https://files.pythonhosted.org/packages/06/67/5d34602311f89ee1229c30ac8f847f3434480f207e50119c476f3492ddd2/drc_cmis-0.0.9-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "686f1cd689e8ab69227ab257f1e5e7f4", "sha256": "daa089f2f70ca8befbacf9eb765133a9bd94dbb70aaa4bd6afd7bc963339364c" }, "downloads": -1, "filename": "drc_cmis-0.0.9.tar.gz", "has_sig": false, "md5_digest": "686f1cd689e8ab69227ab257f1e5e7f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24204, "upload_time": "2019-06-07T13:34:25", "upload_time_iso_8601": "2019-06-07T13:34:25.483025Z", "url": "https://files.pythonhosted.org/packages/f9/ea/d45a29ca23f149db74464ee7dc4b57b78eaec66cfc72b30f968977a8f4ec/drc_cmis-0.0.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "d5e57382c453c47992b30b387e49cb5d", "sha256": "e26d74e65b7fe41a51125fe8acfdffca02f29e8baffb5c976886033bd5606b2c" }, "downloads": -1, "filename": "drc_cmis-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d5e57382c453c47992b30b387e49cb5d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 32048, "upload_time": "2019-06-07T13:59:51", "upload_time_iso_8601": "2019-06-07T13:59:51.558801Z", "url": "https://files.pythonhosted.org/packages/d8/fd/0d233963d6d3e935719c4aa1e08f847d891c813ae6a4a03d5641c68ce500/drc_cmis-0.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da4d32c2cc2292a1f2bcf39f7fcc758d", "sha256": "415e9e6af88d2e3bb4cc8443dc6f2ad594d632559f81b1fe626013187934b30a" }, "downloads": -1, "filename": "drc_cmis-0.1.0.tar.gz", "has_sig": false, "md5_digest": "da4d32c2cc2292a1f2bcf39f7fcc758d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24191, "upload_time": "2019-06-07T13:59:53", "upload_time_iso_8601": "2019-06-07T13:59:53.215863Z", "url": "https://files.pythonhosted.org/packages/4d/2a/23a44e2adc068043efe7c61ec3f49d213da9b962a9a2432951a50beba110/drc_cmis-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "6a3173b3c5c6d12c062beb51d027db1c", "sha256": "ebaf5e2141b0b493cf94903e89eae781bada47a432109539b6292eb1f7d12103" }, "downloads": -1, "filename": "drc_cmis-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6a3173b3c5c6d12c062beb51d027db1c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 32134, "upload_time": "2019-06-07T14:31:10", "upload_time_iso_8601": "2019-06-07T14:31:10.932971Z", "url": "https://files.pythonhosted.org/packages/4e/d0/0adf46ab073624d153b1c2b28785801c30e16a962ec21595140e439dad59/drc_cmis-0.1.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b0f01ecbd293f46a8d40425a41317c1", "sha256": "8c734c82670d44539b91803a648bff553a10ed6791111e33f1509e5d451d5984" }, "downloads": -1, "filename": "drc_cmis-0.1.1.tar.gz", "has_sig": false, "md5_digest": "0b0f01ecbd293f46a8d40425a41317c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24262, "upload_time": "2019-06-07T14:31:12", "upload_time_iso_8601": "2019-06-07T14:31:12.409362Z", "url": "https://files.pythonhosted.org/packages/94/35/e152c0da40d74b47f6914a610a2157438b2c8e6c73c3387eae7405847e4e/drc_cmis-0.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "ee6266aab53099f12f664ae3b9953189", "sha256": "2cb70597fbcb881c3679a533936c682926a90a25b5878c3da65b16460de98463" }, "downloads": -1, "filename": "drc_cmis-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ee6266aab53099f12f664ae3b9953189", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 24831, "upload_time": "2019-06-13T15:03:22", "upload_time_iso_8601": "2019-06-13T15:03:22.960035Z", "url": "https://files.pythonhosted.org/packages/fc/6a/0e5444a69262a1be1659d372ee8a0d9dcb65a64cb5e188685457bf8b140f/drc_cmis-0.2.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ee9db57f1d5dfb0b39d9abbf8fd3f27", "sha256": "22e492eb17b353dbb5e9cb874227855074880161f4ce4911deb71d5b8829821f" }, "downloads": -1, "filename": "drc_cmis-0.2.0.tar.gz", "has_sig": false, "md5_digest": "0ee9db57f1d5dfb0b39d9abbf8fd3f27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20306, "upload_time": "2019-06-13T15:03:24", "upload_time_iso_8601": "2019-06-13T15:03:24.323479Z", "url": "https://files.pythonhosted.org/packages/aa/80/0b350a896c0697ea5348ac964386fe501e635cc42643114fa9caf5b5ff80/drc_cmis-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "00cf8c529be746b5654b7dc668da12bc", "sha256": "df37308c89a59a4b50339a6cadf8327302be11bb015eb4a6bdfd719e45c8c715" }, "downloads": -1, "filename": "drc_cmis-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "00cf8c529be746b5654b7dc668da12bc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 24771, "upload_time": "2019-06-18T13:29:41", "upload_time_iso_8601": "2019-06-18T13:29:41.137247Z", "url": "https://files.pythonhosted.org/packages/55/5e/76ea6c6fe96db4f7b2a43e97abc07bedb111ea734a7d0d8cfe16ed64fd34/drc_cmis-0.2.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb30a0eb9ffb8b8316ce6e7e7e4aa31b", "sha256": "5309c38137bd6ca869dab7da0dd547915172419f0e86351d1f339e9b30bf4df4" }, "downloads": -1, "filename": "drc_cmis-0.2.1.tar.gz", "has_sig": false, "md5_digest": "bb30a0eb9ffb8b8316ce6e7e7e4aa31b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19463, "upload_time": "2019-06-18T13:29:43", "upload_time_iso_8601": "2019-06-18T13:29:43.022991Z", "url": "https://files.pythonhosted.org/packages/a1/8d/fa41a91fbad609ea9858c74230792f3b80f8ef669de34ca7dbb1ebc0ac12/drc_cmis-0.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "a84f9bda85fcd321428aad4822640d5c", "sha256": "7580cd626a811ee79715c105bafa0c8d511889d003083e5d31e0c9b9399b50b0" }, "downloads": -1, "filename": "drc_cmis-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a84f9bda85fcd321428aad4822640d5c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 32529, "upload_time": "2019-06-28T13:43:21", "upload_time_iso_8601": "2019-06-28T13:43:21.716078Z", "url": "https://files.pythonhosted.org/packages/a8/49/455287a3a1251f953ca3c59d743924228bc9110864859786b80dfcfe7df7/drc_cmis-0.2.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e9c9f73008c1cf750363930a32ef77f", "sha256": "37d75f6d9e0262996aa8f4f090c0a00d3b8ee94cb8e8585a59f6fa6ac74d5d98" }, "downloads": -1, "filename": "drc_cmis-0.2.2.tar.gz", "has_sig": false, "md5_digest": "4e9c9f73008c1cf750363930a32ef77f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20908, "upload_time": "2019-06-28T13:43:23", "upload_time_iso_8601": "2019-06-28T13:43:23.595954Z", "url": "https://files.pythonhosted.org/packages/84/0f/5e85371555d4f4163303faa9b3445906c49c2ccedcff17987ab3f55577eb/drc_cmis-0.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "45c29d5108d5f5d258805ee6ea5f0d0f", "sha256": "447d40dc10bea154ccef9e834af9b2342709cd50c9c5244f21da23fe4b86d9a8" }, "downloads": -1, "filename": "drc_cmis-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "45c29d5108d5f5d258805ee6ea5f0d0f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 32866, "upload_time": "2019-07-23T07:51:32", "upload_time_iso_8601": "2019-07-23T07:51:32.108345Z", "url": "https://files.pythonhosted.org/packages/1e/4c/e3493944456a89da215f131ec934ef3da720cabb86aca689e14ce61687a9/drc_cmis-0.2.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "76be38c8b80e68857ff01387c37c14bb", "sha256": "df60345fe09790ff47973c47d1121b9481400aa4c233a22c5d4d3b606569a718" }, "downloads": -1, "filename": "drc_cmis-0.2.3.tar.gz", "has_sig": false, "md5_digest": "76be38c8b80e68857ff01387c37c14bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21449, "upload_time": "2019-07-23T07:51:33", "upload_time_iso_8601": "2019-07-23T07:51:33.918702Z", "url": "https://files.pythonhosted.org/packages/22/5f/9a2ee453f1dff000ed81925e866fde0c2da8089747468b3c15f938dc8cc8/drc_cmis-0.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "3ec5b6b09c8705d61c6315edb6e5815d", "sha256": "1c1c0c9226ef1eb3a78ae4bdd3e66d785caa066c64714135eb0323fee29d9627" }, "downloads": -1, "filename": "drc_cmis-0.2.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3ec5b6b09c8705d61c6315edb6e5815d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 32852, "upload_time": "2019-07-23T09:31:53", "upload_time_iso_8601": "2019-07-23T09:31:53.425178Z", "url": "https://files.pythonhosted.org/packages/d9/3e/36377c2f9aed6c536a91b9c732237328ce060e0c0eb4a6f23580bafd1c68/drc_cmis-0.2.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ef59c2c399b8241389739c0bf43a87d", "sha256": "593fba0b971d25fe995b53707930afefe909e794aa1bad240ce66894e3a8b8ff" }, "downloads": -1, "filename": "drc_cmis-0.2.4.tar.gz", "has_sig": false, "md5_digest": "0ef59c2c399b8241389739c0bf43a87d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21109, "upload_time": "2019-07-23T09:31:55", "upload_time_iso_8601": "2019-07-23T09:31:55.010404Z", "url": "https://files.pythonhosted.org/packages/c4/a9/c00f900be06bd9c18837d8796daf970d68d862af40d19a70c63cfeb01db0/drc_cmis-0.2.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "df12cb2095c198e2fa09f8f6b0a31bb3", "sha256": "d7ddaa68f52736c38a89b7d0d751f6ae4ec87135743830754b10d03e612036c4" }, "downloads": -1, "filename": "drc_cmis-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "df12cb2095c198e2fa09f8f6b0a31bb3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 25333, "upload_time": "2019-10-08T15:02:49", "upload_time_iso_8601": "2019-10-08T15:02:49.774785Z", "url": "https://files.pythonhosted.org/packages/70/46/f27001c277e99877e47b9bc8a2405c874eaa0cebca244ddaffb41d72712d/drc_cmis-0.3.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f4a95422896313f809144b640ad86886", "sha256": "1a87b49a16cda3b11a0aa38b49b729203228f4ca28dc91d1e5c66a96f526d029" }, "downloads": -1, "filename": "drc_cmis-0.3.0.tar.gz", "has_sig": false, "md5_digest": "f4a95422896313f809144b640ad86886", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20502, "upload_time": "2019-10-08T15:02:51", "upload_time_iso_8601": "2019-10-08T15:02:51.962847Z", "url": "https://files.pythonhosted.org/packages/b7/1b/45157cab97bb32c4fbf24c29aa1c6f267074ca97b2f2c83be9ad208854b3/drc_cmis-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "740dd248e334772c123b8d2a5ed27e14", "sha256": "5debc6247c2a6f7e7c67f89105786c61a38aea7b0a779413bd396221312fd580" }, "downloads": -1, "filename": "drc_cmis-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "740dd248e334772c123b8d2a5ed27e14", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 25311, "upload_time": "2019-10-17T15:11:05", "upload_time_iso_8601": "2019-10-17T15:11:05.786785Z", "url": "https://files.pythonhosted.org/packages/6a/b0/337aa66e0bc4c5df538feca2b345e88df89929b7e00d0298b14b9934e40c/drc_cmis-0.3.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dbd15f908c24ac3f7a502ca37d329441", "sha256": "eefa34f96adf0688f4410fd31aeaa6019d0fd5f3e1c312008e7191004c7d50e1" }, "downloads": -1, "filename": "drc_cmis-0.3.1.tar.gz", "has_sig": false, "md5_digest": "dbd15f908c24ac3f7a502ca37d329441", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20486, "upload_time": "2019-10-17T15:11:09", "upload_time_iso_8601": "2019-10-17T15:11:09.803243Z", "url": "https://files.pythonhosted.org/packages/84/d9/0a70cd6c8f48ca5259fe4c0731bb26c9c906dc8bc042154645b9eb9ae163/drc_cmis-0.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "467b61efa7d21128a4c2b1c15fa373c6", "sha256": "48a62c9f40e6f7a2587a9f17438c1df95d3618aaf36f15102a5297bcd9cfb928" }, "downloads": -1, "filename": "drc_cmis-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "467b61efa7d21128a4c2b1c15fa373c6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 25337, "upload_time": "2019-10-21T13:34:37", "upload_time_iso_8601": "2019-10-21T13:34:37.574837Z", "url": "https://files.pythonhosted.org/packages/ce/71/b983edc99002ef4661844477049d2da554fd8d24f19b1ac7b9854e269431/drc_cmis-0.3.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ede1d43c0457f579fc103c69fefd9b75", "sha256": "cde26c2b2a79e871409e9c5dae18f282c8938b96b70033102cb7bcc98125b894" }, "downloads": -1, "filename": "drc_cmis-0.3.2.tar.gz", "has_sig": false, "md5_digest": "ede1d43c0457f579fc103c69fefd9b75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20526, "upload_time": "2019-10-21T13:34:39", "upload_time_iso_8601": "2019-10-21T13:34:39.534777Z", "url": "https://files.pythonhosted.org/packages/13/8e/34da6aa909fbfef217c49109d3144d444a82f059986ee898338eb858cb6e/drc_cmis-0.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "8a57c8569300eecd8822825c33eb78f0", "sha256": "1f206662d720ffd1051159d8ef68b3b894644b75a24649a4c95c707b48b79106" }, "downloads": -1, "filename": "drc_cmis-0.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8a57c8569300eecd8822825c33eb78f0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 26462, "upload_time": "2019-11-18T10:51:36", "upload_time_iso_8601": "2019-11-18T10:51:36.904553Z", "url": "https://files.pythonhosted.org/packages/f5/78/1841150df8e50a01f6c422047b3642346145f6c179fa77d4fca549617da1/drc_cmis-0.3.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f7d56da3d3cc14f5fd420f88d3451954", "sha256": "7b20ef32148ac1e2f1417860dac84f849c7d4e5c8329553c38acf99533b57dfa" }, "downloads": -1, "filename": "drc_cmis-0.3.3.tar.gz", "has_sig": false, "md5_digest": "f7d56da3d3cc14f5fd420f88d3451954", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21193, "upload_time": "2019-11-18T10:51:38", "upload_time_iso_8601": "2019-11-18T10:51:38.543473Z", "url": "https://files.pythonhosted.org/packages/a1/75/4aad69169e98b88080a4b4eb53f5ae5c6fb245477562935f02e448171d3b/drc_cmis-0.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "cfc3ba2817ae0a70c9808f06b94b21d7", "sha256": "4ea2c8d4dc98a8e2742ea38cf4108e72b730d1bb5449930283f0d4df3d73dcf7" }, "downloads": -1, "filename": "drc_cmis-0.3.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cfc3ba2817ae0a70c9808f06b94b21d7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 26739, "upload_time": "2019-11-25T15:37:32", "upload_time_iso_8601": "2019-11-25T15:37:32.148659Z", "url": "https://files.pythonhosted.org/packages/79/83/32319a0f7d8924b4350345dbc39e32aa6e8a7d68492a092c84a3c832a38e/drc_cmis-0.3.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5cddf964551c5f16f92f520602cefc73", "sha256": "624db2e13f40849c8055ed75b0a587ecdf6e26ebe0b6b943a60d8497138c942c" }, "downloads": -1, "filename": "drc_cmis-0.3.4.tar.gz", "has_sig": false, "md5_digest": "5cddf964551c5f16f92f520602cefc73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21424, "upload_time": "2019-11-25T15:37:33", "upload_time_iso_8601": "2019-11-25T15:37:33.794784Z", "url": "https://files.pythonhosted.org/packages/be/43/7c928da80f19303948647ab30f9d1d0ca207851860161f9132047609670f/drc_cmis-0.3.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "8338dd579ef297a7318b112a990bf0ac", "sha256": "3da538eb8a1c8393f729dd7a326e99193e9f17f17b4c6bbf8c07eeb2208a6382" }, "downloads": -1, "filename": "drc_cmis-0.3.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8338dd579ef297a7318b112a990bf0ac", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 26843, "upload_time": "2019-12-10T11:21:58", "upload_time_iso_8601": "2019-12-10T11:21:58.517594Z", "url": "https://files.pythonhosted.org/packages/80/cf/ded0c674220cbda473ba2a22dda7d0f893dfed0c9ab4721cdf52d34f4029/drc_cmis-0.3.6-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dcba28078a254d70e0c0c8edd687c4a3", "sha256": "fd5907934e6bc87ff25748d2b3ecb8f11190ce65fd625fd1fad77948d7ed81f6" }, "downloads": -1, "filename": "drc_cmis-0.3.6.tar.gz", "has_sig": false, "md5_digest": "dcba28078a254d70e0c0c8edd687c4a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21519, "upload_time": "2019-12-10T11:21:59", "upload_time_iso_8601": "2019-12-10T11:21:59.865065Z", "url": "https://files.pythonhosted.org/packages/c1/ef/5c1950f6eba4bb7f60bdedcc4ef13348d8544571c714708fe33fce3e2589/drc_cmis-0.3.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "7077fb12078fcd7a2382231afba7e943", "sha256": "a29ff49ec1e2e5dba677605c3ce05c2cfa8ed06af8340a12e50cf2a9e14c178d" }, "downloads": -1, "filename": "drc_cmis-0.3.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7077fb12078fcd7a2382231afba7e943", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 26840, "upload_time": "2019-12-16T15:45:07", "upload_time_iso_8601": "2019-12-16T15:45:07.770807Z", "url": "https://files.pythonhosted.org/packages/80/99/86fe102bd9269511207f46ff7657360e7cd9f48916ae3767843952114ccb/drc_cmis-0.3.7-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e2739b19466dc8bb2ea66a0facb0f66", "sha256": "bbd06998a290ab902ca7f00d848e3b8cfa253a389de61aa0bcba531ebc958185" }, "downloads": -1, "filename": "drc_cmis-0.3.7.tar.gz", "has_sig": false, "md5_digest": "9e2739b19466dc8bb2ea66a0facb0f66", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21529, "upload_time": "2019-12-16T15:45:09", "upload_time_iso_8601": "2019-12-16T15:45:09.417769Z", "url": "https://files.pythonhosted.org/packages/16/07/e0f2c6eafda6f110ab4424a7b0e9403badb578adf4b832c2ba41dc1f5900/drc_cmis-0.3.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "833a119170bc9c1ee01e82fdc742636a", "sha256": "bb0edaafdb0223e09dd6f514265b600dac581726fb0a5b4890899eceeaa05e8e" }, "downloads": -1, "filename": "drc_cmis-0.3.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "833a119170bc9c1ee01e82fdc742636a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 26841, "upload_time": "2020-06-08T14:46:11", "upload_time_iso_8601": "2020-06-08T14:46:11.744860Z", "url": "https://files.pythonhosted.org/packages/a4/9c/9ac427ef431e43dfc8ca07f22485d1dd8cf12a49053a5217d1568297adbe/drc_cmis-0.3.8-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2342158cd803730d8676898f7d7d61fe", "sha256": "41de175f44b6732e4bc2e414381a809697fcc9d58677b26f725f9394b8c77f15" }, "downloads": -1, "filename": "drc_cmis-0.3.8.tar.gz", "has_sig": false, "md5_digest": "2342158cd803730d8676898f7d7d61fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21776, "upload_time": "2020-06-08T14:46:12", "upload_time_iso_8601": "2020-06-08T14:46:12.939648Z", "url": "https://files.pythonhosted.org/packages/8a/35/13eaf9c61a46b1609495f532ebeaf69879c8f11a144a229f4d9d053557e9/drc_cmis-0.3.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "0045166e3bf7866aaa126a8d36bf0d8d", "sha256": "dcbc81c682f35051c9d2ae440d296b8ec7373fb5fd158bbb9668284f56a789fa" }, "downloads": -1, "filename": "drc_cmis-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0045166e3bf7866aaa126a8d36bf0d8d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 27943, "upload_time": "2020-04-30T14:23:43", "upload_time_iso_8601": "2020-04-30T14:23:43.846115Z", "url": "https://files.pythonhosted.org/packages/fb/fc/3dbaf2bfc8d776aa55d67376c1cee59be8d6fbe5669f69ebea5c8bbce672/drc_cmis-0.4.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f4ae14cc5d182b59547680fb8d889b02", "sha256": "24d660cc195b72b618715e65f2ffd5ca95fbbf7104884766a5575ce8cdd95205" }, "downloads": -1, "filename": "drc_cmis-0.4.0.tar.gz", "has_sig": false, "md5_digest": "f4ae14cc5d182b59547680fb8d889b02", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22889, "upload_time": "2020-04-30T14:23:44", "upload_time_iso_8601": "2020-04-30T14:23:44.957611Z", "url": "https://files.pythonhosted.org/packages/5a/c2/9b4898eb50ed2cb90fd1752aebd856d4443d454e57c0e637e934c227b6e7/drc_cmis-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "af77a9ea23cf98c7ef8f44ff9c9b8295", "sha256": "3b57cc7704a3a28fe5950e7f2f8dc82273a3369410b625c96a51050e4dafb160" }, "downloads": -1, "filename": "drc_cmis-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "af77a9ea23cf98c7ef8f44ff9c9b8295", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27683, "upload_time": "2020-07-03T11:14:51", "upload_time_iso_8601": "2020-07-03T11:14:51.317142Z", "url": "https://files.pythonhosted.org/packages/10/1c/fd892c44faa10dffada8e569eb8d797b2fa1ce4d685be4e366b40dcf814b/drc_cmis-0.5.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "facaa959f956e2f1ed7c5185f09d344e", "sha256": "59a0b27599b4c8ab24b780de5682e0b4c380b03c77a303cc600ccb3cdbb1ddc2" }, "downloads": -1, "filename": "drc-cmis-0.5.0.tar.gz", "has_sig": false, "md5_digest": "facaa959f956e2f1ed7c5185f09d344e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23527, "upload_time": "2020-07-03T11:14:52", "upload_time_iso_8601": "2020-07-03T11:14:52.397772Z", "url": "https://files.pythonhosted.org/packages/37/6c/53d11c310a3ff72f5f9ea2513d99790a46427d56cc4a741e39c7f2f92a8c/drc-cmis-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "0aa448e8a21c61887de6addccd236a4a", "sha256": "047d882bf321c2a00639b71df36ec714d98947388da0ea3f58700ef2bc01c62b" }, "downloads": -1, "filename": "drc_cmis-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "0aa448e8a21c61887de6addccd236a4a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 71636, "upload_time": "2020-08-25T14:32:03", "upload_time_iso_8601": "2020-08-25T14:32:03.413422Z", "url": "https://files.pythonhosted.org/packages/51/81/4342c9af5e0681bca0dd8180a6f00d4a5b8c0a2b4681a4e99139b8179628/drc_cmis-1.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "11a02088886b300fa3bab950b9dc639c", "sha256": "f709a5cb5dd7c6c527296e012d1ae8160e40fc8bc740398f35bb1bfc0f1d0078" }, "downloads": -1, "filename": "drc-cmis-1.0.0.tar.gz", "has_sig": false, "md5_digest": "11a02088886b300fa3bab950b9dc639c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52117, "upload_time": "2020-08-25T14:32:05", "upload_time_iso_8601": "2020-08-25T14:32:05.192841Z", "url": "https://files.pythonhosted.org/packages/99/b8/a6f258b3f2e50b5d0814ef74176f5ce9b0620b245325e0dd24b531f505c4/drc-cmis-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "2ffa3a41c091e774740b56fb5be60cf7", "sha256": "b3cc36a145e212d617635a19d04dcf789c733258979981b9c591843dd658d91c" }, "downloads": -1, "filename": "drc_cmis-1.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2ffa3a41c091e774740b56fb5be60cf7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 74924, "upload_time": "2020-08-29T13:10:05", "upload_time_iso_8601": "2020-08-29T13:10:05.633691Z", "url": "https://files.pythonhosted.org/packages/5b/a9/dafd294568527c352cd686d3e878fccdf8c68589594f0be7b0d7b3759171/drc_cmis-1.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82fa2b367f2b9f9224f47e3d2e33d625", "sha256": "b01b2c98df9f2d02947f9fdc7179d191510cfc4e950d292a70533c38776878d9" }, "downloads": -1, "filename": "drc-cmis-1.1.0.tar.gz", "has_sig": false, "md5_digest": "82fa2b367f2b9f9224f47e3d2e33d625", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54567, "upload_time": "2020-08-29T13:10:07", "upload_time_iso_8601": "2020-08-29T13:10:07.232344Z", "url": "https://files.pythonhosted.org/packages/1c/02/9f57808223738b8176dad7dc67f5e2faf578cef1d92ba18d559da6821c21/drc-cmis-1.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "b171115f1200615de4419b3a0417f203", "sha256": "88ddcb5298e7ebc1a1adff31c0aa1d15fa116da751f74513dd8059c858e04f1c" }, "downloads": -1, "filename": "drc_cmis-1.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "b171115f1200615de4419b3a0417f203", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 75896, "upload_time": "2020-11-06T13:57:32", "upload_time_iso_8601": "2020-11-06T13:57:32.050665Z", "url": "https://files.pythonhosted.org/packages/4a/e8/9afa8f52015f2330e231456e0f0cf802017c10c62afcb9bb0debbe371e76/drc_cmis-1.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e80a3f1e3bb816f20b152ecc7867344f", "sha256": "d8eab1310d1c69e2344e1db33f134692dbab208a730a215fa2ec641f02ea678a" }, "downloads": -1, "filename": "drc-cmis-1.1.1.tar.gz", "has_sig": false, "md5_digest": "e80a3f1e3bb816f20b152ecc7867344f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55451, "upload_time": "2020-11-06T13:57:34", "upload_time_iso_8601": "2020-11-06T13:57:34.810781Z", "url": "https://files.pythonhosted.org/packages/69/fa/f52ecdfef35fa630265b0b5070541054d4143315bfcd2d3f00fdcc43dcee/drc-cmis-1.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "08d00e6f27f01b1103b594bd5ea1faea", "sha256": "06a0c483d55821083588ad34568ba4ee346b9dc97e41534bb14cb504950b1ca5" }, "downloads": -1, "filename": "drc_cmis-1.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "08d00e6f27f01b1103b594bd5ea1faea", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 76862, "upload_time": "2020-12-10T10:44:39", "upload_time_iso_8601": "2020-12-10T10:44:39.548306Z", "url": "https://files.pythonhosted.org/packages/5d/ed/334bcfa39bc1fbd96c2ea8a63fa2f2cf46bc4986c7924f4e8045f4db84e8/drc_cmis-1.1.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a9e65382171192feaecd8cf9a3946e9b", "sha256": "c213d6441aded80d48e91fded80a208263de55f1cb07e0f909054bc3ba974ab5" }, "downloads": -1, "filename": "drc-cmis-1.1.2.tar.gz", "has_sig": false, "md5_digest": "a9e65382171192feaecd8cf9a3946e9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58550, "upload_time": "2020-12-10T10:44:41", "upload_time_iso_8601": "2020-12-10T10:44:41.024695Z", "url": "https://files.pythonhosted.org/packages/b8/59/dc855784123ca47d32787556de6c77ade748ac4752ce85029fb902e09484/drc-cmis-1.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "9151f493e278746e689ecc8f1727a30c", "sha256": "3ede75c5cbd4e988184dd1a2b25fcd453a6440e06e38e05d3f71ffc3c26bc887" }, "downloads": -1, "filename": "drc_cmis-1.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9151f493e278746e689ecc8f1727a30c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 91352, "upload_time": "2021-02-04T11:23:43", "upload_time_iso_8601": "2021-02-04T11:23:43.639003Z", "url": "https://files.pythonhosted.org/packages/2d/4f/75ca9d8732305cd3e996646ca8ef3097c24cdcefaaeb15ee2d86d2acf622/drc_cmis-1.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "56cf3423eef61282fe65d8c92679e92f", "sha256": "7d0c7bc34b7b8829152b5ae69befff2924bc89d9ddf2fd5d6bcc5e8b4b3267aa" }, "downloads": -1, "filename": "drc-cmis-1.2.0.tar.gz", "has_sig": false, "md5_digest": "56cf3423eef61282fe65d8c92679e92f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67361, "upload_time": "2021-02-04T11:23:45", "upload_time_iso_8601": "2021-02-04T11:23:45.238559Z", "url": "https://files.pythonhosted.org/packages/e6/13/aa971535429e375c512c210a4bbe5d3a3e0c9eeff67dd2e0938c8c5a5647/drc-cmis-1.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "be74db71b29da5b80d07cb3245017129", "sha256": "5ef3e486a752591d4da0e9021157cfe7014623959cffdf01ce795ecaaf9f7d77" }, "downloads": -1, "filename": "drc_cmis-1.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "be74db71b29da5b80d07cb3245017129", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 91376, "upload_time": "2021-02-05T10:05:09", "upload_time_iso_8601": "2021-02-05T10:05:09.679158Z", "url": "https://files.pythonhosted.org/packages/5f/c7/441ed4c90d1d0d88302d93b427c542202efcf12ae9021d07db1ec78c22da/drc_cmis-1.2.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "744f1212c6731bff14bfe30d2ffcc05f", "sha256": "a5d60a9710535b5e61bc3dafa40a3f45b877de9078a76b725fb128537841b13d" }, "downloads": -1, "filename": "drc-cmis-1.2.1.tar.gz", "has_sig": false, "md5_digest": "744f1212c6731bff14bfe30d2ffcc05f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67431, "upload_time": "2021-02-05T10:05:11", "upload_time_iso_8601": "2021-02-05T10:05:11.302705Z", "url": "https://files.pythonhosted.org/packages/1c/3b/606601b0ceee3920bee31f8ca6ac6d3643a3f571709b04708bb6892d7e37/drc-cmis-1.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "65cdf214ce538f68888966fc34b45df1", "sha256": "24b8ce4c342afb24edb69a7e311dcf0ff7af4aa21585243c2060263449c8d0d7" }, "downloads": -1, "filename": "drc_cmis-1.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "65cdf214ce538f68888966fc34b45df1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 91413, "upload_time": "2021-03-08T13:23:11", "upload_time_iso_8601": "2021-03-08T13:23:11.734622Z", "url": "https://files.pythonhosted.org/packages/96/18/468caa337530425621500d7fa252f4d148bd36df67b62c0df9e8bc2b5793/drc_cmis-1.2.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "47e225af2738912c3bf3aca54db0049d", "sha256": "0a565500116b55b629e7b4fe262d9528da01a46ad6bec54ff2c0f21b5b6a0b66" }, "downloads": -1, "filename": "drc-cmis-1.2.2.tar.gz", "has_sig": false, "md5_digest": "47e225af2738912c3bf3aca54db0049d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67555, "upload_time": "2021-03-08T13:23:13", "upload_time_iso_8601": "2021-03-08T13:23:13.189730Z", "url": "https://files.pythonhosted.org/packages/f3/73/703c21687c6a6fd12d7317ee526fe2018d11fb9dd8b56b51e183a1549044/drc-cmis-1.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "b74de85b5e8352a56bbdc0aacf567a3a", "sha256": "980b32890ef457b6ce39adbbe2269b37a62ad5bac1365850d6daca23f0573172" }, "downloads": -1, "filename": "drc_cmis-1.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "b74de85b5e8352a56bbdc0aacf567a3a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 91380, "upload_time": "2021-03-22T14:38:56", "upload_time_iso_8601": "2021-03-22T14:38:56.124604Z", "url": "https://files.pythonhosted.org/packages/42/3a/80d11e8dd681ec4884553685d260ec3e5c3251b3bf5d1efbf6e8c963ec07/drc_cmis-1.2.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1ed95d5e2e6e4b8343559ca396115d8a", "sha256": "64f5b89c5585ada1a866a868487d607142588364e2d620ea546a6cea13afb10a" }, "downloads": -1, "filename": "drc-cmis-1.2.3.tar.gz", "has_sig": false, "md5_digest": "1ed95d5e2e6e4b8343559ca396115d8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67556, "upload_time": "2021-03-22T14:38:58", "upload_time_iso_8601": "2021-03-22T14:38:58.247538Z", "url": "https://files.pythonhosted.org/packages/89/56/34491b1ed6d5ecf3c4d0fe30d2c373841821e7b41d778ded811bd55bf7f8/drc-cmis-1.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "e0ffeba4da05e904a472ae19d1dabd2c", "sha256": "0f204ba98d86625f9c9be610043f22cd3316d6750f98f2221f635d39cdd6ab9c" }, "downloads": -1, "filename": "drc_cmis-1.2.4-py3-none-any.whl", "has_sig": false, "md5_digest": "e0ffeba4da05e904a472ae19d1dabd2c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 92804, "upload_time": "2021-04-29T14:16:16", "upload_time_iso_8601": "2021-04-29T14:16:16.418339Z", "url": "https://files.pythonhosted.org/packages/2a/1e/2b9346b9c3bf11aa663adc0df65c058a93113cf3726f3ed5937ec229db99/drc_cmis-1.2.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "21b6e9f340e1167022a184753a97f161", "sha256": "3fdd281c742cf6b2406422d1fd9e26e261a3ec626e92b34fa9b5baf6bc12d0cf" }, "downloads": -1, "filename": "drc-cmis-1.2.4.tar.gz", "has_sig": false, "md5_digest": "21b6e9f340e1167022a184753a97f161", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78687, "upload_time": "2021-04-29T14:16:17", "upload_time_iso_8601": "2021-04-29T14:16:17.911531Z", "url": "https://files.pythonhosted.org/packages/37/c7/778e8dc714ec69a7d7cdcf26922df1f21ad4e95fefa670521027e0f17eb0/drc-cmis-1.2.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.5": [ { "comment_text": "", "digests": { "md5": "5836be447a3f02b372151d3f264f6f2b", "sha256": "0912ea3aa0e667c917088c65ae4397e30568ce76aa76a472228e94f1af89351c" }, "downloads": -1, "filename": "drc_cmis-1.2.5-py3-none-any.whl", "has_sig": false, "md5_digest": "5836be447a3f02b372151d3f264f6f2b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 92814, "upload_time": "2021-04-29T14:44:47", "upload_time_iso_8601": "2021-04-29T14:44:47.381262Z", "url": "https://files.pythonhosted.org/packages/57/4c/4ce184e5cfe5eb75e2720c5d3192f85ae169ed0bbcb0c1307168be72897f/drc_cmis-1.2.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c00188c355ebb56a42c43fbc4b16b6f3", "sha256": "0115086ee28eafada2f125489802e4f9eb9d3a31eae7c1c806fb9fa1fa6b8ec3" }, "downloads": -1, "filename": "drc-cmis-1.2.5.tar.gz", "has_sig": false, "md5_digest": "c00188c355ebb56a42c43fbc4b16b6f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78719, "upload_time": "2021-04-29T14:44:49", "upload_time_iso_8601": "2021-04-29T14:44:49.014805Z", "url": "https://files.pythonhosted.org/packages/f6/13/7e48e4e98a6778550751ee6c4454d0e94d83edcc2c1a81013adf9535baba/drc-cmis-1.2.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.6": [ { "comment_text": "", "digests": { "md5": "882ee7cee6733a331fdf12cd35324bca", "sha256": "57ac7688c4d43ec78aa609e67d22d36b0d19895a3370373c6471e62f9c98dbca" }, "downloads": -1, "filename": "drc_cmis-1.2.6-py3-none-any.whl", "has_sig": false, "md5_digest": "882ee7cee6733a331fdf12cd35324bca", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 93942, "upload_time": "2021-05-12T16:59:57", "upload_time_iso_8601": "2021-05-12T16:59:57.401441Z", "url": "https://files.pythonhosted.org/packages/16/03/8a1d797673d7e55db31a5ea8c4c591a98a7bbd4ebba69cc3a73f877894b7/drc_cmis-1.2.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "92f4da728c26041a9235f21112fa1d3f", "sha256": "120c254758a01d987c83a96be2edf3175c06d2d460f246e829baa7c27867c138" }, "downloads": -1, "filename": "drc-cmis-1.2.6.tar.gz", "has_sig": false, "md5_digest": "92f4da728c26041a9235f21112fa1d3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79977, "upload_time": "2021-05-12T16:59:59", "upload_time_iso_8601": "2021-05-12T16:59:59.072632Z", "url": "https://files.pythonhosted.org/packages/ea/ed/079ed3866914a36c43be1b27f0c553760a1ade53a8f289a6a4e48283dc76/drc-cmis-1.2.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "d563e8d5241cfdd3e6783ae047417e5f", "sha256": "a5d387ffe39a2c1476b7c272213da30528d4542ddde35915f7cb29d827c4add2" }, "downloads": -1, "filename": "drc_cmis-1.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d563e8d5241cfdd3e6783ae047417e5f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 93998, "upload_time": "2022-03-10T10:42:08", "upload_time_iso_8601": "2022-03-10T10:42:08.722539Z", "url": "https://files.pythonhosted.org/packages/9f/9d/b4411a6c36779d8814b5053a6e74a8cc635e9f989cabcf439526d3b66864/drc_cmis-1.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "94bf4141c44014b9798cc3b24682ab1a", "sha256": "fa4ffa82454c1b83ef07b0580b685f5d610e55b02ea5aae89244f9d55b785424" }, "downloads": -1, "filename": "drc-cmis-1.3.0.tar.gz", "has_sig": false, "md5_digest": "94bf4141c44014b9798cc3b24682ab1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79089, "upload_time": "2022-03-10T10:42:10", "upload_time_iso_8601": "2022-03-10T10:42:10.318280Z", "url": "https://files.pythonhosted.org/packages/d4/0b/8dec3348bf5061e8273ad6c1b33af7db2bf7b639b04cadb12d301e3e7497/drc-cmis-1.3.0.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d563e8d5241cfdd3e6783ae047417e5f", "sha256": "a5d387ffe39a2c1476b7c272213da30528d4542ddde35915f7cb29d827c4add2" }, "downloads": -1, "filename": "drc_cmis-1.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d563e8d5241cfdd3e6783ae047417e5f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 93998, "upload_time": "2022-03-10T10:42:08", "upload_time_iso_8601": "2022-03-10T10:42:08.722539Z", "url": "https://files.pythonhosted.org/packages/9f/9d/b4411a6c36779d8814b5053a6e74a8cc635e9f989cabcf439526d3b66864/drc_cmis-1.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "94bf4141c44014b9798cc3b24682ab1a", "sha256": "fa4ffa82454c1b83ef07b0580b685f5d610e55b02ea5aae89244f9d55b785424" }, "downloads": -1, "filename": "drc-cmis-1.3.0.tar.gz", "has_sig": false, "md5_digest": "94bf4141c44014b9798cc3b24682ab1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79089, "upload_time": "2022-03-10T10:42:10", "upload_time_iso_8601": "2022-03-10T10:42:10.318280Z", "url": "https://files.pythonhosted.org/packages/d4/0b/8dec3348bf5061e8273ad6c1b33af7db2bf7b639b04cadb12d301e3e7497/drc-cmis-1.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }