{
"info": {
"author": "Dan Michael O. Hegg\u00f8",
"author_email": "danmichaelo@gmail.com",
"bugtrack_url": null,
"classifiers": [
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
],
"description": ".. image:: https://img.shields.io/travis/scriptotek/mc2skos.svg\n :target: https://travis-ci.org/scriptotek/mc2skos\n :alt: Build status\n\n.. image:: https://img.shields.io/codecov/c/github/scriptotek/mc2skos.svg\n :target: https://codecov.io/gh/scriptotek/mc2skos\n :alt: Test coverage\n\n.. image:: https://landscape.io/github/scriptotek/mc2skos/master/landscape.svg?style=flat\n :target: https://landscape.io/github/scriptotek/mc2skos/master\n :alt: Code health\n\n.. image:: https://img.shields.io/pypi/v/mc2skos.svg\n :target: https://pypi.python.org/pypi/mc2skos\n :alt: Latest version\n\n.. image:: https://img.shields.io/github/license/scriptotek/mc2skos.svg\n :target: http://opensource.org/licenses/MIT\n :alt: MIT license\n\nPython script for converting\n`MARC 21 Classification `_\nand\n`MARC 21 Authority `_\nrecords (serialized as MARCXML) to\n`SKOS `_ concepts.\n\nInitially developed to support the\nproject \"`Felles terminologi for klassifikasjon med Dewey `_\",\nfor converting Dewey Decimal Classification (DDC) records.\n`Issues `_ and\nsuggestions for generalizations and improvements are welcome!\n\nSee `mapping schema for MARC21 Classification <#mapping-schema-for-marc21-classification>`_\nand `for MARC21 Authority <#mapping-schema-for-marc21-authority)>`_ below.\n\nInstallation\n============\n\nReleases can be installed from the command line with `pip `__:\n\n.. code-block:: console\n\n $ pip install --upgrade mc2skos # with virtualenv or as root\n $ pip install --upgrade --user mc2skos # install to ~/.local\n\n* Works with both Python 2.7 and 3.4+. See `Travis `_\n for details on tested Python versions.\n* If lxml fails to install on Windows, try the windows installer\n from `from PyPI `_.\n* If lxml fails to install on Unix, install system packages python-dev and libxml2-dev\n* Make sure the Python scripts folder has been added to your PATH.\n\nTo directly use a version from source code repository:\n\n.. code:: console\n\n $ git clone https://github.com/scriptotek/mc2skos.git\n $ cd mc2skos\n $ pip install -e .\n\nUsage\n=====\n\n.. code-block:: console\n\n mc2skos infile.xml outfile.ttl # from file to file\n mc2skos infile.xml > outfile.ttl # from file to standard output\n\nRun ``mc2skos --help`` or ``mc2skos -h`` for options.\n\nURIs\n====\n\nURIs are generated automatically for known concept schemes, identified from\n``084 $a`` for classification records and from ``008[11]`` / ``040 $f`` for\nauthority records. To list known concept schemes:\n\n.. code:: console\n\n $ mc2skos -l\n\nTo add more vocabularies, you can edit\n`vocabularies.yml `_.\nPull requests for adding more vocabularies are very welcome!\n\nURIs can be also be generated on the fly from an URI template specified with option\n``--uri``. The following template parameters are recognized:\n\n* ``{control_number}`` is the control number from 001, 010 or 016. The current approach\n is to use 010 or 016 if defined, otherwise 001. If you find examples where this approach\n fails, please add them to [#42](https://github.com/scriptotek/mc2skos/issues/42).\n* ``{collection}`` is \"class\", \"table\" or \"scheme\"\n* ``{object}`` is a member of the classification scheme and part of a ``{collection}``, such\n as a specific class or table. Spaces in the URI are replaced by hyphens or another character\n configured with option `--whitespace`.\n* ``{edition}`` is taken from ``084 $c`` (with language code stripped)\n\n\nTo add ``skos:inScheme`` statements to all records, an URI template can be\nspecified with option ``--scheme``. Otherwise, it will be derived from a default\ntemplate if the concept scheme is known.\n\nTo add an additional ``skos:inScheme`` statement to table records, an URI\ntemplate can be specified with option ``--table_scheme``. Otherwise, it will be\nderived from a default template if the concept scheme is known.\n\nThe following example is generated from a DDC table record:\n\n.. code-block:: turtle\n\n a skos:Concept ;\n skos:inScheme ,\n ;\n skos:notation \"T6--982\" ;\n skos:prefLabel \"Chibchan and Paezan languages\"@en .\n\n\nMapping schema for MARC21 Classification\n========================================\n\nOnly a small part of the MARC21 Classification data model is converted, and the\nconversion follows a rather pragmatic approach, exemplified by the mapping of\nthe 7XX fields to skos:altLabel.\n\n========================================================== =====================================\nMARC21XML RDF\n========================================================== =====================================\n``001`` Control Number (see note above on 001, 010 & 016) ``dcterms:identifier``\n``005`` Date and time of latest transaction ``dcterms:modified``\n``008[0:6]`` Date entered on file ``dcterms:created``\n``008[8]=\"d\" or \"e\"`` Classification validity ``owl:deprecated``\n``010`` Control Number (see note above on 001, 010 & 016) ``dcterms:identifier``\n``016`` Control Number (see note above on 001, 010 & 016) ``dcterms:identifier``\n``153 $a``, ``$c``, ``$z`` Classification number ``skos:notation``\n``153 $j`` Caption ``skos:prefLabel``\n``153 $e``, ``$f``, ``$z`` Classification number hierarchy ``skos:broader``\n``253`` Complex See Reference ``skos:editorialNote``\n``353`` Complex See Also Reference ``skos:editorialNote``\n``680`` Scope Note ``skos:scopeNote``\n``683`` Application Instruction Note ``skos:editorialNote``\n``684`` Auxiliary Instruction Note ``skos:editorialNote``\n``685`` History Note ``skos:historyNote``\n``700`` Index Term-Personal Name ``skos:altLabel``\n``710`` Index Term-Corporate Name ``skos:altLabel``\n``711`` Index Term-Meeting Name ``skos:altLabel``\n``730`` Index Term-Uniform Title ``skos:altLabel``\n``748`` Index Term-Chronological ``skos:altLabel``\n``750`` Index Term-Topical ``skos:altLabel``\n``751`` Index Term-Geographic Name ``skos:altLabel``\n``753`` Index Term-Uncontrolled ``skos:altLabel``\n``765`` Synthesized Number Components ``mads:componentList`` (see below)\n========================================================== =====================================\n\nSynthesized number components\n-----------------------------\n\nComponents of synthesized numbers explicitly described in 765 fields are\nexpressed using the `mads:componentList` property, and to preserve the order of the\ncomponents, we use RDF lists. Example:\n\n.. code-block:: turtle\n\n @prefix mads: .\n\n a skos:Concept ;\n mads:componentList (\n \n \n \n ) ;\n skos:notation \"001.30973\" .\n\nRetrieving list members *in order* is `surprisingly hard `_ with SPARQL.\nRetrieving ordered pairs is the best solution I've come up with so far:\n\n.. code-block::\n\n PREFIX mads: \n PREFIX rdf: \n PREFIX skos: \n\n SELECT ?c1_notation ?c1_label ?c2_notation ?c2_label\n WHERE { GRAPH {\n\n mads:componentList ?l .\n ?l rdf:rest* ?sl .\n ?sl rdf:first ?e1 .\n ?sl rdf:rest ?sln .\n ?sln rdf:first ?e2 .\n\n ?e1 skos:notation ?c1_notation .\n ?e2 skos:notation ?c2_notation .\n\n OPTIONAL {\n ?e1 skos:prefLabel ?c1_label .\n }\n OPTIONAL {\n ?e2 skos:prefLabel ?c2_label .\n }\n }}\n\n=========== ================================================= =========== ===================================================\nc1_notation c1_label c2_notation c2_label\n=========== ================================================= =========== ===================================================\n\"001.3\" \"Humaniora\"@nb \"T1--09\" \"Historie, geografisk behandling, biografier\"@nb\n\"T1--09\" \"Historie, geografisk behandling, biografier\"@nb \"T2--73\" \"USA\"@nb\n=========== ================================================= =========== ===================================================\n\n\nAdditional conversion rules for WebDewey data\n---------------------------------------------\n\nThe script comes with a few extra rules for distinguishing between different types of notes in\nWebDewey records and extract entities from these. The entity extraction rules (marked with [*] below)\nutilizes a non-standard namespace and are not enabled by default. Specify the ``--webdewey`` flag to\nuse them.\n\n=================================================== ================================================\nMARC21XML RDF\n=================================================== ================================================\n``680`` having ``$9 ess=ndf`` Definition note ``skos:definition``\n``680`` having ``$9 ess=nvn`` Variant name note ``wd:variantName`` [*] for each subfield ``$t``\n``680`` having ``$9 ess=nch`` Class here note ``wd:classHere`` [*] for each subfield ``$t``\n``680`` having ``$9 ess=nin`` Including note ``wd:including`` [*] for each subfield ``$t``\n``680`` having ``$9 ess=nph`` Former heading ``wd:formerHeading`` [*] for each subfield ``$t``\n``694`` having ``$9 ess=nml`` ??? ``SKOS.editorialNote``\n=================================================== ================================================\n\n**Notes that are currently not treated in any special way:**\n\n* ``253`` having ``$9 ess=nsx`` Do-not-use.\n* ``253`` having ``$9 ess=nce`` Class-elsewhere\n* ``253`` having ``$9 ess=ncw`` Class-elsewhere-manual\n* ``253`` having ``$9 ess=nse`` See.\n* ``253`` having ``$9 ess=nsw`` See-manual.\n* ``353`` having ``$9 ess=nsa`` See-also\n* ``683`` having ``$9 ess=nbu`` Preference note\n* ``683`` having ``$9 ess=nop`` Options note\n* ``683`` having ``$9 ess=non`` Options note\n* ``684`` having ``$9 ess=nsm`` Manual note\n* ``685`` having ``$9 ess=ndp`` Discontinued partial\n* ``685`` having ``$9 ess=nrp`` Relocation\n* ``689`` having ``$9 ess=nru`` Sist brukt i...\n\n\nMapping schema for MARC21 Authority\n========================================\n\nOnly a small part of the MARC21 Authority data model is converted.\n\n========================================================== ===================================================================\nMARC21XML RDF\n========================================================== ===================================================================\n``001`` Control Number ``dcterms:identifier``\n``005`` Date and time of latest transaction ``dcterms:modified``\n``008[0:6]`` Date entered on file ``dcterms:created``\n``065`` Other Classification Number ``skos:exactMatch`` (see below)\n``080`` Universal Decimal Classification Number ``skos:exactMatch`` (see below)\n``083`` Dewey Decimal Classification Number ``skos:exactMatch`` (see below)\n``1XX`` Headings ``skos:prefLabel``\n``4XX`` See From Tracings ``skos:altLabel``\n``5XX`` See Also From Tracings ``skos:related``, ``skos:broader`` or ``skos:narrower`` (see below)\n``667`` Nonpublic General Note ``skos:editorialNote``\n``670`` Source Data Found ``skos:note``\n``677`` Definition ``skos:definition``\n``678`` Biographical or Historical Data ``skos:note``\n``680`` Public General Note ``skos:note``\n``681`` Subject Example Tracing Note ``skos:example``\n``682`` Deleted Heading Information ``skos:changeNote``\n``688`` Application History Note ``skos:historyNote``\n``7XX`` Heading Linking Entries ``skos:xxxMatch`` (see below)\n========================================================== ===================================================================\n\nNotes:\n\n* Mappings are generated for 065, 080 and 083 only if an URI pattern for the\n classification scheme has been defined in the config.\n\n* SKOS relations are generated from 5XX fields if the fields contain a ``$0``\n subfield containing either a control number or an URI for the related record.\n The relationship type is ``skos:broader`` if ``$w=g``, ``skos:narrower`` if ``$w=h``,\n and ``skos:related`` otherwise.\n If ``$w=r`` and ``$4`` contains an URI, that URI is used as the relationship type.\n Note that ``$4`` must precede ``$0`` (since both subfields can be repeated).\n\n* Mappings/relationships are generated for 7XX headings if the fields contain a ``$0``\n subfield containing either the control number or the URI of the related record.\n If ``$0`` contains a control number, an URI pattern for the vocabulary\n (found in indicator 2 or ``$2``) must be defined in mc2skos.record.CONFIG.\n If ``$4`` contains an URI, that URI is used as the relationship type.\n Otherwise, if ``$4`` contains one of the ISO 25964 relations, the corresponding\n SKOS relation is used. Otherwise, the default value ``skos:closeMatch`` is used.\n Note that ``$4`` must precede ``$0`` (since both subfields can be repeated).",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/scriptotek/mc2skos",
"keywords": "marc rdf skos",
"license": "MIT",
"maintainer": "",
"maintainer_email": "",
"name": "mc2skos",
"package_url": "https://pypi.org/project/mc2skos/",
"platform": "",
"project_url": "https://pypi.org/project/mc2skos/",
"project_urls": {
"Homepage": "https://github.com/scriptotek/mc2skos"
},
"release_url": "https://pypi.org/project/mc2skos/0.11.1/",
"requires_dist": null,
"requires_python": "",
"summary": "Convert Marc21 Classification records in MARC/XML to SKOS/RDF",
"version": "0.11.1"
},
"last_serial": 5155272,
"releases": {
"0.10.0": [
{
"comment_text": "",
"digests": {
"md5": "cf08bccb64d5713a1e21e2ea5e9d6b84",
"sha256": "c443add280d0503c3a415dc2560c4164e0bcb3ff4ecc44bbabee6541d8b1010d"
},
"downloads": -1,
"filename": "mc2skos-0.10.0.tar.gz",
"has_sig": false,
"md5_digest": "cf08bccb64d5713a1e21e2ea5e9d6b84",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 32273,
"upload_time": "2018-04-05T16:37:08",
"url": "https://files.pythonhosted.org/packages/3e/cb/d21a8e33bc91cec31ff5aa87a535321bf6187be75abbcd29fdab09b0ac2d/mc2skos-0.10.0.tar.gz"
}
],
"0.10.1": [
{
"comment_text": "",
"digests": {
"md5": "eb8da5c0dae2a490576c69179eabb2ff",
"sha256": "0a1c3fad20a5396b4ec21d2f034183343cf864f3a59d5a591b7ec36c430a6104"
},
"downloads": -1,
"filename": "mc2skos-0.10.1.tar.gz",
"has_sig": false,
"md5_digest": "eb8da5c0dae2a490576c69179eabb2ff",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 32592,
"upload_time": "2018-04-12T21:56:48",
"url": "https://files.pythonhosted.org/packages/b3/67/464570954afb194e73c3f40c9f169af77b8db6a1112cd55663886fd647dc/mc2skos-0.10.1.tar.gz"
}
],
"0.10.2": [
{
"comment_text": "",
"digests": {
"md5": "7ff4bb371ebc5ecca1be5961f9cd30f3",
"sha256": "a51abe4ff6e9566861a6edea0e69df4dc7a12d8b8da2fbf5ee01f7c1f24a1d4f"
},
"downloads": -1,
"filename": "mc2skos-0.10.2.tar.gz",
"has_sig": false,
"md5_digest": "7ff4bb371ebc5ecca1be5961f9cd30f3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 32738,
"upload_time": "2018-06-04T17:33:31",
"url": "https://files.pythonhosted.org/packages/18/71/a09d6a14dbf43d674a2eb696fad4d5e25e28fd8e407c1c4ed3774a7877b1/mc2skos-0.10.2.tar.gz"
}
],
"0.11.0": [
{
"comment_text": "",
"digests": {
"md5": "24f182370365cf6571ccd4275ccc6e4c",
"sha256": "d6d208e156fba3e20aa54225caa591d30f773728ee8ba69bbe24bd9ea8ec80d0"
},
"downloads": -1,
"filename": "mc2skos-0.11.0.tar.gz",
"has_sig": false,
"md5_digest": "24f182370365cf6571ccd4275ccc6e4c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31572,
"upload_time": "2018-08-18T14:38:07",
"url": "https://files.pythonhosted.org/packages/de/a9/b0164b0b1cd61623c8685e46e665abd20a6af16f5dea7dbc1e657b744818/mc2skos-0.11.0.tar.gz"
}
],
"0.11.1": [
{
"comment_text": "",
"digests": {
"md5": "7073913dba17480e2a76cd23a934c1bc",
"sha256": "ea534afd1ecaca88dc1130b55f159f92610a5ddce1b9b8fa0f4f6889c1931e71"
},
"downloads": -1,
"filename": "mc2skos-0.11.1.tar.gz",
"has_sig": false,
"md5_digest": "7073913dba17480e2a76cd23a934c1bc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31735,
"upload_time": "2019-04-17T13:44:39",
"url": "https://files.pythonhosted.org/packages/6c/3f/5f9b7853424b4de23ff4373c1894a6a32870db440fd070aac4f7f86b4a6a/mc2skos-0.11.1.tar.gz"
}
],
"0.3.1": [
{
"comment_text": "",
"digests": {
"md5": "842995e007e5190a4c49ac2f2bab1af3",
"sha256": "e5df77e36b05636c4687afd292cee9aebcda0c67b574d527dfb33f698be32116"
},
"downloads": -1,
"filename": "mc2skos-0.3.1-py2.6.egg",
"has_sig": false,
"md5_digest": "842995e007e5190a4c49ac2f2bab1af3",
"packagetype": "bdist_egg",
"python_version": "2.6",
"requires_python": null,
"size": 19781,
"upload_time": "2016-08-15T19:20:56",
"url": "https://files.pythonhosted.org/packages/4d/77/423a0ed7ad38da3eabeb55a452e5f9db0363a3001caee76480da050194ba/mc2skos-0.3.1-py2.6.egg"
},
{
"comment_text": "",
"digests": {
"md5": "94820f89bf8bed6b5b8f356e53ce609c",
"sha256": "94f59f1152d264b9856abd5182aa025efa2752e92f90bcf7bdf9d1debbc7258d"
},
"downloads": -1,
"filename": "mc2skos-0.3.1-py2.7.egg",
"has_sig": false,
"md5_digest": "94820f89bf8bed6b5b8f356e53ce609c",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 19748,
"upload_time": "2016-08-15T19:21:00",
"url": "https://files.pythonhosted.org/packages/eb/72/27f968ce8a187cef87149abea22d524ba27dc6ab7f3c65b4188ab49d87fb/mc2skos-0.3.1-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "6bd2eed87449266f630256a4856f4a8c",
"sha256": "461048d8be7b783da49624dcc4a98884faf8ea4bb19545bb226a213ebede799b"
},
"downloads": -1,
"filename": "mc2skos-0.3.1-py3.3.egg",
"has_sig": false,
"md5_digest": "6bd2eed87449266f630256a4856f4a8c",
"packagetype": "bdist_egg",
"python_version": "3.3",
"requires_python": null,
"size": 20157,
"upload_time": "2016-08-15T19:21:14",
"url": "https://files.pythonhosted.org/packages/ad/ee/b207e0a88ae88d8bd479d4da0c9d375b4cdb4b290eb4ceb6b22d9a71edfc/mc2skos-0.3.1-py3.3.egg"
},
{
"comment_text": "",
"digests": {
"md5": "34c7a17c0b686c65d5cd3a2f2511fd4e",
"sha256": "55262d25a7ecff78a7faf328a89a53586515e712457b23370309dffd57fbe47f"
},
"downloads": -1,
"filename": "mc2skos-0.3.1-py3.4.egg",
"has_sig": false,
"md5_digest": "34c7a17c0b686c65d5cd3a2f2511fd4e",
"packagetype": "bdist_egg",
"python_version": "3.4",
"requires_python": null,
"size": 19891,
"upload_time": "2016-08-15T19:21:11",
"url": "https://files.pythonhosted.org/packages/64/d2/ba32af19af9ae13cf7619bff986e07e5dcc3bdd562c321c948b82867348a/mc2skos-0.3.1-py3.4.egg"
},
{
"comment_text": "",
"digests": {
"md5": "cf24a3d1398f5e42f1dffb734b4dfbd5",
"sha256": "f06d82050b3c9aa77b067db797e6aedabf9d3ed867dc863ac4b62e1b1b5851e4"
},
"downloads": -1,
"filename": "mc2skos-0.3.1-py3.5.egg",
"has_sig": false,
"md5_digest": "cf24a3d1398f5e42f1dffb734b4dfbd5",
"packagetype": "bdist_egg",
"python_version": "3.5",
"requires_python": null,
"size": 19813,
"upload_time": "2016-08-15T19:26:42",
"url": "https://files.pythonhosted.org/packages/31/ac/895c28297c30a16660cd44cfbfd821093b5d457407b268211b29f5d23f2a/mc2skos-0.3.1-py3.5.egg"
},
{
"comment_text": "",
"digests": {
"md5": "62431fff85304ea0e458f9c1435d1c66",
"sha256": "368d0992c5caeaf995801ea43d2d02c470ec64e752927675e1a38969ee2a8d28"
},
"downloads": -1,
"filename": "mc2skos-0.3.1-py3.6.egg",
"has_sig": false,
"md5_digest": "62431fff85304ea0e458f9c1435d1c66",
"packagetype": "bdist_egg",
"python_version": "3.6",
"requires_python": null,
"size": 19608,
"upload_time": "2016-08-15T19:24:40",
"url": "https://files.pythonhosted.org/packages/8c/f5/663d8c3588c792f2d693c50b5035eb207088f39f5311d02fadffa1776f88/mc2skos-0.3.1-py3.6.egg"
},
{
"comment_text": "",
"digests": {
"md5": "1df09152d143b27a71fb351e7c31c9da",
"sha256": "c7519a9429a7d902dd5041f5cb5e16f93b2ff73e3721a0eb1bd91a8b081398b4"
},
"downloads": -1,
"filename": "mc2skos-0.3.1.tar.gz",
"has_sig": false,
"md5_digest": "1df09152d143b27a71fb351e7c31c9da",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11601,
"upload_time": "2016-08-15T19:20:59",
"url": "https://files.pythonhosted.org/packages/59/2c/db6a7eb9c9b12de662c7f73f38ff193bd5ea50b7df7cc729cd8d4c5ac50a/mc2skos-0.3.1.tar.gz"
}
],
"0.4.0": [
{
"comment_text": "",
"digests": {
"md5": "a15232af64f747ae5808df64c1798e09",
"sha256": "937b6ce9ce47fd6c39d06f9928c84d807909a7ef320de661dd980b398bfac17e"
},
"downloads": -1,
"filename": "mc2skos-0.4.0-py2.6.egg",
"has_sig": false,
"md5_digest": "a15232af64f747ae5808df64c1798e09",
"packagetype": "bdist_egg",
"python_version": "2.6",
"requires_python": null,
"size": 20187,
"upload_time": "2017-01-17T17:09:09",
"url": "https://files.pythonhosted.org/packages/f3/88/170c3bc066256d4f06a736ac9936343e84d250380e5f9a086252bccce87e/mc2skos-0.4.0-py2.6.egg"
},
{
"comment_text": "",
"digests": {
"md5": "873f3a0e4f0149f9a7731d2435938431",
"sha256": "10d5f9adf3ddea45d3d619e6d4c306f048295e5849ba827a6eaebfe48147ab86"
},
"downloads": -1,
"filename": "mc2skos-0.4.0-py2.7.egg",
"has_sig": false,
"md5_digest": "873f3a0e4f0149f9a7731d2435938431",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 20146,
"upload_time": "2017-01-17T17:09:11",
"url": "https://files.pythonhosted.org/packages/02/71/cfb9415e07dcdd87c8c28eae58cab613b846607596f248eca215c3481cef/mc2skos-0.4.0-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "5b2645a458dff79af9dd85c988f83e14",
"sha256": "ab5da86102ba57ecb4c1d221b48278293c3efccbc4b6aa7102fc47069a5d1fc1"
},
"downloads": -1,
"filename": "mc2skos-0.4.0-py3.3.egg",
"has_sig": false,
"md5_digest": "5b2645a458dff79af9dd85c988f83e14",
"packagetype": "bdist_egg",
"python_version": "3.3",
"requires_python": null,
"size": 20565,
"upload_time": "2017-01-17T17:09:47",
"url": "https://files.pythonhosted.org/packages/eb/65/8161ddb35935968d18dfc8fcf3ff5867a92abca8c34065fffcb8726b39a4/mc2skos-0.4.0-py3.3.egg"
},
{
"comment_text": "",
"digests": {
"md5": "ab604dd88a5c2bfc895028653e5a971a",
"sha256": "42f77342d58ac795aeeb022fbb3bc55cefce984ee92dc78cfbc995fb95ec1190"
},
"downloads": -1,
"filename": "mc2skos-0.4.0-py3.4.egg",
"has_sig": false,
"md5_digest": "ab604dd88a5c2bfc895028653e5a971a",
"packagetype": "bdist_egg",
"python_version": "3.4",
"requires_python": null,
"size": 20307,
"upload_time": "2017-01-17T17:10:11",
"url": "https://files.pythonhosted.org/packages/bf/47/b3e9ded7f0cd759e17fcf05b82cc8d002b27cfc71b510a9147fc2d64bbb0/mc2skos-0.4.0-py3.4.egg"
},
{
"comment_text": "",
"digests": {
"md5": "82186710094ac5e383fa1efb3c3e9eb1",
"sha256": "323deb61a63ca67fbc47577e7e25e46548a6df0da2624d1ece539e2409703a2d"
},
"downloads": -1,
"filename": "mc2skos-0.4.0-py3.5.egg",
"has_sig": false,
"md5_digest": "82186710094ac5e383fa1efb3c3e9eb1",
"packagetype": "bdist_egg",
"python_version": "3.5",
"requires_python": null,
"size": 20219,
"upload_time": "2017-01-17T17:12:36",
"url": "https://files.pythonhosted.org/packages/1a/0d/9ac6c4608bb8c9aae9c0ec260fe40807bae6cb85413f53e46b7010441dfa/mc2skos-0.4.0-py3.5.egg"
},
{
"comment_text": "",
"digests": {
"md5": "f4df7cd4dc8b0191e3d0743a5f2dfe5c",
"sha256": "0b7859ac660a7af65683cf79140dc2f1e03aa419759876e640475b49b90ae941"
},
"downloads": -1,
"filename": "mc2skos-0.4.0.tar.gz",
"has_sig": false,
"md5_digest": "f4df7cd4dc8b0191e3d0743a5f2dfe5c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12128,
"upload_time": "2017-01-17T17:09:10",
"url": "https://files.pythonhosted.org/packages/15/9b/087d0220a11c047825752002f0c4bc9eae5a759b6bd16d352608f37df2b9/mc2skos-0.4.0.tar.gz"
}
],
"0.5.0": [
{
"comment_text": "",
"digests": {
"md5": "688e424029e1dc3978b1e5545373d834",
"sha256": "574d6cbc8bad168002d599ea2968e4e09382f96c9e33deafa93a098ba2755f56"
},
"downloads": -1,
"filename": "mc2skos-0.5.0-py2.6.egg",
"has_sig": false,
"md5_digest": "688e424029e1dc3978b1e5545373d834",
"packagetype": "bdist_egg",
"python_version": "2.6",
"requires_python": null,
"size": 21134,
"upload_time": "2017-02-09T21:11:57",
"url": "https://files.pythonhosted.org/packages/6b/8f/4f03667b59a0219d18e1b9cc49c625b26d5a7e53cbb88002f59f7a842918/mc2skos-0.5.0-py2.6.egg"
},
{
"comment_text": "",
"digests": {
"md5": "5df95c0f9a8c53c1ac24292bd0de11fa",
"sha256": "70c5a01cf3f4aa79364c7467f928b5cdbc300c1efae72e5783bf4a6932a50a8c"
},
"downloads": -1,
"filename": "mc2skos-0.5.0-py2.7.egg",
"has_sig": false,
"md5_digest": "5df95c0f9a8c53c1ac24292bd0de11fa",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 21099,
"upload_time": "2017-02-09T21:11:44",
"url": "https://files.pythonhosted.org/packages/2f/51/db63108118296aa31ac1ea801c3604cc1762b53238807e5f477ddb68a611/mc2skos-0.5.0-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "7013cda03235c0cf58313010acc15d01",
"sha256": "a31f24646026b3fb8cdb2756e35f2aea470ec5e25084eaddc3f979f4d6f0dd31"
},
"downloads": -1,
"filename": "mc2skos-0.5.0-py3.3.egg",
"has_sig": false,
"md5_digest": "7013cda03235c0cf58313010acc15d01",
"packagetype": "bdist_egg",
"python_version": "3.3",
"requires_python": null,
"size": 21512,
"upload_time": "2017-02-09T21:12:18",
"url": "https://files.pythonhosted.org/packages/c4/20/f7ddb08de11ab7756b7bdab0a7f462e8a3519b5249d346078ff5b804799a/mc2skos-0.5.0-py3.3.egg"
},
{
"comment_text": "",
"digests": {
"md5": "04c64b5ff6b7a5d174a9576822a831e4",
"sha256": "2ccf14758f5c55e32c44f7b91894483beca2397d3ce0362df2f5ad593c7e9e83"
},
"downloads": -1,
"filename": "mc2skos-0.5.0-py3.4.egg",
"has_sig": false,
"md5_digest": "04c64b5ff6b7a5d174a9576822a831e4",
"packagetype": "bdist_egg",
"python_version": "3.4",
"requires_python": null,
"size": 21247,
"upload_time": "2017-02-09T21:12:33",
"url": "https://files.pythonhosted.org/packages/46/30/9067d47fd6dfde7a05e52a6bfbb2d330acb259c131edbaaa40a074c08210/mc2skos-0.5.0-py3.4.egg"
},
{
"comment_text": "",
"digests": {
"md5": "2e7dcc513e31624f968cea3aca508e71",
"sha256": "8c42720fa03a1fbfff8c48e532753cc5a291ae5e1d272839636bfd896d9de546"
},
"downloads": -1,
"filename": "mc2skos-0.5.0-py3.5.egg",
"has_sig": false,
"md5_digest": "2e7dcc513e31624f968cea3aca508e71",
"packagetype": "bdist_egg",
"python_version": "3.5",
"requires_python": null,
"size": 21151,
"upload_time": "2017-02-09T21:12:47",
"url": "https://files.pythonhosted.org/packages/0e/8d/0990df7c3ba2cd39dda5bfbb7785839164a643be0e489ea6b43f75dbe7b3/mc2skos-0.5.0-py3.5.egg"
},
{
"comment_text": "",
"digests": {
"md5": "fb426e56aedc446973429c322696505b",
"sha256": "dccdd4a5212c8402a53f7f7ced296d016c0a239ae72cb5bc35702f1e55300333"
},
"downloads": -1,
"filename": "mc2skos-0.5.0.tar.gz",
"has_sig": false,
"md5_digest": "fb426e56aedc446973429c322696505b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12674,
"upload_time": "2017-02-09T21:11:46",
"url": "https://files.pythonhosted.org/packages/2a/a1/8e4dfde3ac3651f28ab11e728836ad0fcce367f4cf5810fcd8b8aee37b30/mc2skos-0.5.0.tar.gz"
}
],
"0.5.1": [
{
"comment_text": "",
"digests": {
"md5": "de0b5fedc2b724e10f0636e655179c0f",
"sha256": "3dcca52608a775512f1a50bf54575a862902fd414269ed5837f4c890ff0656a5"
},
"downloads": -1,
"filename": "mc2skos-0.5.1-py2.6.egg",
"has_sig": false,
"md5_digest": "de0b5fedc2b724e10f0636e655179c0f",
"packagetype": "bdist_egg",
"python_version": "2.6",
"requires_python": null,
"size": 22035,
"upload_time": "2017-02-10T09:54:29",
"url": "https://files.pythonhosted.org/packages/ab/d9/0f138afeeba07cd533a61bd57a4c2dfa05907175f29e77f9206385e4311e/mc2skos-0.5.1-py2.6.egg"
},
{
"comment_text": "",
"digests": {
"md5": "026825284916c64dc3589880de839652",
"sha256": "37c1ceaca96c16589fe75548fe2a2ac6e8e5049ec959dd66007ea2e78f767a0e"
},
"downloads": -1,
"filename": "mc2skos-0.5.1-py2.7.egg",
"has_sig": false,
"md5_digest": "026825284916c64dc3589880de839652",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 21997,
"upload_time": "2017-02-10T10:01:37",
"url": "https://files.pythonhosted.org/packages/7b/bf/0fcce652596a63590acbe868d56759069199aa304bd526bee5154902e31f/mc2skos-0.5.1-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "fa6b71300d4dc54fe2116ec1d869aac4",
"sha256": "893cc47c884cf65b78085d18cfad45510a7654c4478e9b37d996aeb13f788c99"
},
"downloads": -1,
"filename": "mc2skos-0.5.1-py3.3.egg",
"has_sig": false,
"md5_digest": "fa6b71300d4dc54fe2116ec1d869aac4",
"packagetype": "bdist_egg",
"python_version": "3.3",
"requires_python": null,
"size": 22408,
"upload_time": "2017-02-10T09:57:44",
"url": "https://files.pythonhosted.org/packages/fa/4b/07340987f6915d6a3f253fd037e3151d148c2611c9fd32ac04bc3b2cf74a/mc2skos-0.5.1-py3.3.egg"
},
{
"comment_text": "",
"digests": {
"md5": "f77dc317909edd705fe58875a67dae73",
"sha256": "e5f5598f62c3edd3afbb7c31d04e1c20cec774434893f5a97a39012caa94a75e"
},
"downloads": -1,
"filename": "mc2skos-0.5.1-py3.4.egg",
"has_sig": false,
"md5_digest": "f77dc317909edd705fe58875a67dae73",
"packagetype": "bdist_egg",
"python_version": "3.4",
"requires_python": null,
"size": 22148,
"upload_time": "2017-02-10T09:51:47",
"url": "https://files.pythonhosted.org/packages/b9/ce/dd2e416afcd95c9c4fdb03c7e45f11e4a1a7a250c5631fff8aac980f3613/mc2skos-0.5.1-py3.4.egg"
},
{
"comment_text": "",
"digests": {
"md5": "5e303792b524caa33670774d74a75df4",
"sha256": "639cd7c3948fafccdd65592dade74740fd26f445e17c4653a8d662da29973081"
},
"downloads": -1,
"filename": "mc2skos-0.5.1-py3.5.egg",
"has_sig": false,
"md5_digest": "5e303792b524caa33670774d74a75df4",
"packagetype": "bdist_egg",
"python_version": "3.5",
"requires_python": null,
"size": 22051,
"upload_time": "2017-02-10T09:52:00",
"url": "https://files.pythonhosted.org/packages/5d/83/0c51461412ceee674b742e703caae252371f1312607d44182306c0f7fb42/mc2skos-0.5.1-py3.5.egg"
},
{
"comment_text": "",
"digests": {
"md5": "3e23c18b19fe4c920b1e48fc2da0ebc3",
"sha256": "fac143c90a13fc09ae72783b8560531309dd0d1e6e9bb10fb1b00f1758733caa"
},
"downloads": -1,
"filename": "mc2skos-0.5.1.tar.gz",
"has_sig": false,
"md5_digest": "3e23c18b19fe4c920b1e48fc2da0ebc3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13527,
"upload_time": "2017-02-10T09:51:49",
"url": "https://files.pythonhosted.org/packages/3a/de/18fa790b1c96990566cfbbe9395dd2786c8262a17f377d7138360c011488/mc2skos-0.5.1.tar.gz"
}
],
"0.6.0": [
{
"comment_text": "",
"digests": {
"md5": "d976d7f31dde497ffc10efc8c0f25441",
"sha256": "9691bae81b2a6ce38736c796685e7086e1d31ac7b6e0f8de226084620b3d2203"
},
"downloads": -1,
"filename": "mc2skos-0.6.0-py2.6.egg",
"has_sig": false,
"md5_digest": "d976d7f31dde497ffc10efc8c0f25441",
"packagetype": "bdist_egg",
"python_version": "2.6",
"requires_python": null,
"size": 31587,
"upload_time": "2017-06-28T14:34:07",
"url": "https://files.pythonhosted.org/packages/ac/fd/56303d320be1947f5bcd619d2743c64a0f03954b7587a5a16dd9cede78be/mc2skos-0.6.0-py2.6.egg"
},
{
"comment_text": "",
"digests": {
"md5": "22827239b3d89cd17cb558b91ea98088",
"sha256": "4611501d3a6328e835286456554e5f608b7fae958cb0e97821a919e1792b4c51"
},
"downloads": -1,
"filename": "mc2skos-0.6.0-py2.7.egg",
"has_sig": false,
"md5_digest": "22827239b3d89cd17cb558b91ea98088",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 31529,
"upload_time": "2017-06-28T14:34:14",
"url": "https://files.pythonhosted.org/packages/8d/6d/9a358103f3660b8b763a9c3d1e7a6c6716d5fc6e67b0209c647418f72da7/mc2skos-0.6.0-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "43e58e10de7f64908f2e21e9ba105442",
"sha256": "38d3e8b6fbe4f910b5781a6109a1f762e72a7f83fd8f67644d64d5ac6f0f5341"
},
"downloads": -1,
"filename": "mc2skos-0.6.0-py2-none-any.whl",
"has_sig": false,
"md5_digest": "43e58e10de7f64908f2e21e9ba105442",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 22633,
"upload_time": "2017-06-28T14:28:53",
"url": "https://files.pythonhosted.org/packages/04/3b/523eae7d4340aef8dfb22fc85083065fdf734b56532e632c4d36109372e4/mc2skos-0.6.0-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "132412ef630df0c84378b1a91d5e97b7",
"sha256": "86346f9650f5960d58e6407578c89df9ed37f028b447bf2c5e1529797cb6e9ff"
},
"downloads": -1,
"filename": "mc2skos-0.6.0-py3.3.egg",
"has_sig": false,
"md5_digest": "132412ef630df0c84378b1a91d5e97b7",
"packagetype": "bdist_egg",
"python_version": "3.3",
"requires_python": null,
"size": 32373,
"upload_time": "2017-06-28T14:34:21",
"url": "https://files.pythonhosted.org/packages/63/81/9a1ed2121dfd6bc1fd62e0329686a241d3e66ec3ef0e7ca8302d84fe133b/mc2skos-0.6.0-py3.3.egg"
},
{
"comment_text": "",
"digests": {
"md5": "abeca7c404981e20b891057eb946d3c3",
"sha256": "72a9e2c789817a847bddc6ef773d41a0b92387d26045eb862ed80329b55fd77e"
},
"downloads": -1,
"filename": "mc2skos-0.6.0-py3.4.egg",
"has_sig": false,
"md5_digest": "abeca7c404981e20b891057eb946d3c3",
"packagetype": "bdist_egg",
"python_version": "3.4",
"requires_python": null,
"size": 31944,
"upload_time": "2017-06-28T14:34:29",
"url": "https://files.pythonhosted.org/packages/07/49/7da94c0f2a37ef057be34fea929b321a39fa40183fd9f6b2dd8297f5c187/mc2skos-0.6.0-py3.4.egg"
},
{
"comment_text": "",
"digests": {
"md5": "248c70999c5da3e2b578d5b2b703c687",
"sha256": "aa351c4dc9bf36e0f54a3574421259fbb42361e44565a84e3f2180278dcf8be3"
},
"downloads": -1,
"filename": "mc2skos-0.6.0-py3.5.egg",
"has_sig": false,
"md5_digest": "248c70999c5da3e2b578d5b2b703c687",
"packagetype": "bdist_egg",
"python_version": "3.5",
"requires_python": null,
"size": 31782,
"upload_time": "2017-06-28T14:34:33",
"url": "https://files.pythonhosted.org/packages/3a/04/641ad802e290ac173afe499804db11b7525a26286ac7a2c9d13d2b1ac681/mc2skos-0.6.0-py3.5.egg"
},
{
"comment_text": "",
"digests": {
"md5": "48b567883c94c4e591bfee54612e92e7",
"sha256": "6d76fca5e8c09f089a2a015148c8e8d643cfc14372b0ec14428594a205c52507"
},
"downloads": -1,
"filename": "mc2skos-0.6.0.tar.gz",
"has_sig": false,
"md5_digest": "48b567883c94c4e591bfee54612e92e7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 17028,
"upload_time": "2017-06-28T14:28:56",
"url": "https://files.pythonhosted.org/packages/a2/b8/0d7793da629b75494377659510d8020252916ba7fb0d4b9b7c28270b780f/mc2skos-0.6.0.tar.gz"
}
],
"0.7.0": [
{
"comment_text": "",
"digests": {
"md5": "a75ea30d46e037e150cd0cadda5b46f9",
"sha256": "e9b1795f90b4fecc969eab3368318cae8513cdb1a70b34b3f0fea9d70b8e00b9"
},
"downloads": -1,
"filename": "mc2skos-0.7.0-py2.7.egg",
"has_sig": false,
"md5_digest": "a75ea30d46e037e150cd0cadda5b46f9",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 33979,
"upload_time": "2017-07-22T15:23:15",
"url": "https://files.pythonhosted.org/packages/6a/8a/2b1d34e9eccd041a5f775f92fd15ea6040834467e208d17dda92351313ae/mc2skos-0.7.0-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "d0eb459277c32f2113ccd5190b5bc96f",
"sha256": "d2ac2dbba40038fd7fec6bba4c3725072729da2e4946c5e3976e76b1f0b71eee"
},
"downloads": -1,
"filename": "mc2skos-0.7.0-py3.3.egg",
"has_sig": false,
"md5_digest": "d0eb459277c32f2113ccd5190b5bc96f",
"packagetype": "bdist_egg",
"python_version": "3.3",
"requires_python": null,
"size": 34956,
"upload_time": "2017-07-22T15:24:07",
"url": "https://files.pythonhosted.org/packages/55/27/48da45aa286362c343c3f0a574a072c66611efc10bf6971fc8d36fa10dcb/mc2skos-0.7.0-py3.3.egg"
},
{
"comment_text": "",
"digests": {
"md5": "0f2c96bb71d75966efb69fc8851e74b4",
"sha256": "31421e4fff6f4d6d42f2b91f082b3ce4d8e167cf5a1e45f3ff2a0e82d9040325"
},
"downloads": -1,
"filename": "mc2skos-0.7.0-py3.4.egg",
"has_sig": false,
"md5_digest": "0f2c96bb71d75966efb69fc8851e74b4",
"packagetype": "bdist_egg",
"python_version": "3.4",
"requires_python": null,
"size": 34471,
"upload_time": "2017-07-22T15:24:08",
"url": "https://files.pythonhosted.org/packages/6b/e8/eda9aae0d4334ae10756830024981170e15aa4f71e6f91fad6256d4f16c8/mc2skos-0.7.0-py3.4.egg"
},
{
"comment_text": "",
"digests": {
"md5": "7fed999610c585c08c6cd0dc75de107e",
"sha256": "13e6baf01cb418d32210d042324888cf8a0da690635f1d2fa11548b79a3b514c"
},
"downloads": -1,
"filename": "mc2skos-0.7.0-py3.5.egg",
"has_sig": false,
"md5_digest": "7fed999610c585c08c6cd0dc75de107e",
"packagetype": "bdist_egg",
"python_version": "3.5",
"requires_python": null,
"size": 34290,
"upload_time": "2017-07-22T15:24:19",
"url": "https://files.pythonhosted.org/packages/80/cf/33d5e0f6eb0c14391223798bb75e9cb4ce9d3ff4b7b0159242e3b02995f0/mc2skos-0.7.0-py3.5.egg"
},
{
"comment_text": "",
"digests": {
"md5": "04ca165da8202f1c505b62784ac8aeed",
"sha256": "747dec0c2478371eed11854105907abd8c0a52a41e7712bf30a1484299943256"
},
"downloads": -1,
"filename": "mc2skos-0.7.0.tar.gz",
"has_sig": false,
"md5_digest": "04ca165da8202f1c505b62784ac8aeed",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22373,
"upload_time": "2017-07-22T15:23:16",
"url": "https://files.pythonhosted.org/packages/e7/0f/64476212413bdf7f7bf1afdd56760b78fba67334b86747633b14ba229dcd/mc2skos-0.7.0.tar.gz"
}
],
"0.7.1": [
{
"comment_text": "",
"digests": {
"md5": "ceac32afffe9be74aaaf26c1fbea6ae4",
"sha256": "5ceeed03a7f4c677f5d1dd7df30609caa26da440c00f913f91cc3329f59d0642"
},
"downloads": -1,
"filename": "mc2skos-0.7.1-py2.7.egg",
"has_sig": false,
"md5_digest": "ceac32afffe9be74aaaf26c1fbea6ae4",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 34845,
"upload_time": "2017-07-26T15:14:01",
"url": "https://files.pythonhosted.org/packages/75/a0/86aec0158e961a0406c65554e09ddaf0674ed8ae6d369c92dbf16a64d8ae/mc2skos-0.7.1-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "945391a3158727e015ec8ebcc82b1f30",
"sha256": "b776a6216c951bc630ebc493140c0c6e2596400c2651024dc6c4103e653d33d3"
},
"downloads": -1,
"filename": "mc2skos-0.7.1-py3.3.egg",
"has_sig": false,
"md5_digest": "945391a3158727e015ec8ebcc82b1f30",
"packagetype": "bdist_egg",
"python_version": "3.3",
"requires_python": null,
"size": 35820,
"upload_time": "2017-07-26T15:14:31",
"url": "https://files.pythonhosted.org/packages/11/de/6740a787ab9fdd2c0e3738fd840d6d4292481e7224b710cca6d1cf3757d5/mc2skos-0.7.1-py3.3.egg"
},
{
"comment_text": "",
"digests": {
"md5": "3cfc34c71a61c936c78d05134accb410",
"sha256": "1338571297a9f82aae3494d7352c9fa7ebe35a467ac2487c87525d7a02f6d0d9"
},
"downloads": -1,
"filename": "mc2skos-0.7.1-py3.4.egg",
"has_sig": false,
"md5_digest": "3cfc34c71a61c936c78d05134accb410",
"packagetype": "bdist_egg",
"python_version": "3.4",
"requires_python": null,
"size": 35288,
"upload_time": "2017-07-26T15:14:17",
"url": "https://files.pythonhosted.org/packages/5b/d7/45d2144f4267cdc6c54ec4df4bdbf763eb0d4f7d5dcf492a438cab94e10e/mc2skos-0.7.1-py3.4.egg"
},
{
"comment_text": "",
"digests": {
"md5": "97d045bec9ad2ff3c2b46f9ab9838b3c",
"sha256": "fad9d8f509de4bb9edda06a980f9c5c9672245cae0fa6ecd467ed480c2d5a7d3"
},
"downloads": -1,
"filename": "mc2skos-0.7.1-py3.5.egg",
"has_sig": false,
"md5_digest": "97d045bec9ad2ff3c2b46f9ab9838b3c",
"packagetype": "bdist_egg",
"python_version": "3.5",
"requires_python": null,
"size": 35124,
"upload_time": "2017-07-26T15:14:47",
"url": "https://files.pythonhosted.org/packages/75/fc/3ce1e917eea6f3cc5d6e86798a4d0eae0d28bd9938531c4508c4a905589c/mc2skos-0.7.1-py3.5.egg"
},
{
"comment_text": "",
"digests": {
"md5": "19789cc8ece5c79cf746fbeb7dcfe41f",
"sha256": "befd4c0c427da4e7f6bbc22848ee8567646252018a5c4c39c986b81efd29cb4c"
},
"downloads": -1,
"filename": "mc2skos-0.7.1.tar.gz",
"has_sig": false,
"md5_digest": "19789cc8ece5c79cf746fbeb7dcfe41f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22527,
"upload_time": "2017-07-26T15:14:02",
"url": "https://files.pythonhosted.org/packages/6d/4d/1a0ac5fb4d09a235a5c34c1ba03bba69c32128dedc294f44a30baa087d7f/mc2skos-0.7.1.tar.gz"
}
],
"0.7.2": [
{
"comment_text": "",
"digests": {
"md5": "c9ae8f8fe2c0ead0508211ba051cd5c4",
"sha256": "35a516904ee3fd800a49eaefd9d9096346c8f87f297920d0ee2ed7bb17013b26"
},
"downloads": -1,
"filename": "mc2skos-0.7.2.tar.gz",
"has_sig": false,
"md5_digest": "c9ae8f8fe2c0ead0508211ba051cd5c4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 21629,
"upload_time": "2017-10-16T09:08:54",
"url": "https://files.pythonhosted.org/packages/02/c1/2ef902c1df4f749333d76b6be1b9d83c22277eab3bb9a4cb95b066779928/mc2skos-0.7.2.tar.gz"
}
],
"0.7.3": [
{
"comment_text": "",
"digests": {
"md5": "c9714d88e61d4dbbaec56d0ef2908aea",
"sha256": "9594258a12ce513d6abde7e0b689b1e499bc56665b7fac4098ac5c01509a0e2c"
},
"downloads": -1,
"filename": "mc2skos-0.7.3.tar.gz",
"has_sig": false,
"md5_digest": "c9714d88e61d4dbbaec56d0ef2908aea",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 21663,
"upload_time": "2017-10-29T19:20:46",
"url": "https://files.pythonhosted.org/packages/4a/f4/b7570e1f52a8dbae4fe5bba556347d7ff70ea410cb5df995b0689dbe8e43/mc2skos-0.7.3.tar.gz"
}
],
"0.8.0": [
{
"comment_text": "",
"digests": {
"md5": "38e898575e2d587be67b85ccb5ea492f",
"sha256": "137965cf720f232d43addcb34e2f228439fd8ccf85cdc4918615f0a81199102f"
},
"downloads": -1,
"filename": "mc2skos-0.8.0.tar.gz",
"has_sig": false,
"md5_digest": "38e898575e2d587be67b85ccb5ea492f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22534,
"upload_time": "2017-12-04T10:35:55",
"url": "https://files.pythonhosted.org/packages/0c/77/ada254d66fc190f7893437df46ceb066c8e2f12ad680f6215ecc841a094c/mc2skos-0.8.0.tar.gz"
}
],
"0.9.0": [
{
"comment_text": "",
"digests": {
"md5": "1dfe54927e591a9f862fcdd84f637a25",
"sha256": "53f0262befbceeda389f678ee141b8a5f4a35613b9d93a2195645aea2bdfca0e"
},
"downloads": -1,
"filename": "mc2skos-0.9.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1dfe54927e591a9f862fcdd84f637a25",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 26481,
"upload_time": "2018-01-28T21:06:16",
"url": "https://files.pythonhosted.org/packages/6c/48/639b9372fe4e302388c61ea6142479625fedb7b1035e8118c8648ccee0d6/mc2skos-0.9.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "9f172c80d03f56f4a559ddc439ea1730",
"sha256": "366f052166bec443d4b3b3f795dc72526a4f4f0244035bba18c58b4df22fc2af"
},
"downloads": -1,
"filename": "mc2skos-0.9.0.tar.gz",
"has_sig": false,
"md5_digest": "9f172c80d03f56f4a559ddc439ea1730",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 32393,
"upload_time": "2018-01-28T21:06:17",
"url": "https://files.pythonhosted.org/packages/bd/38/f337fa61c68f381388648b682060b4c4447bf901b6e7b367a39d1da12172/mc2skos-0.9.0.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "7073913dba17480e2a76cd23a934c1bc",
"sha256": "ea534afd1ecaca88dc1130b55f159f92610a5ddce1b9b8fa0f4f6889c1931e71"
},
"downloads": -1,
"filename": "mc2skos-0.11.1.tar.gz",
"has_sig": false,
"md5_digest": "7073913dba17480e2a76cd23a934c1bc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31735,
"upload_time": "2019-04-17T13:44:39",
"url": "https://files.pythonhosted.org/packages/6c/3f/5f9b7853424b4de23ff4373c1894a6a32870db440fd070aac4f7f86b4a6a/mc2skos-0.11.1.tar.gz"
}
]
}