{ "info": { "author": "Matias Grioni", "author_email": "matgrioni@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Scientific/Engineering", "Topic :: Utilities" ], "description": "|Build Status| |Coverage Status| |Documentation Status|\n\npyconll\n-------\n\n*Easily work with **CoNLL** files using the familiar syntax of\n**python**.*\n\nThe current version is 2.2.0. This version is fully functional, stable,\ntested, documented, and actively developed.\n\nLinks\n'''''\n\n- `Homepage `__\n- `Documentation `__\n\nInstallation\n~~~~~~~~~~~~\n\nAs with most python packages, simply use ``pip`` to install from PyPi.\n\n::\n\n pip install pyconll\n\nThis package is designed for, and only tested with python 3.4 and up and\nwill not be backported to python 2.x.\n\nMotivation\n~~~~~~~~~~\n\nThis tool is intended to be a **minimal**, **low level**, and\n**functional** library in a widely used programming language. pyconll\ncreates a thin API on top of raw CoNLL annotations that is simple and\nintuitive in a popular programming language.\n\nIn my work with the Universal Dependencies project, I saw a\ndissapointing lack of low level APIs for working with the CoNLL-U\nformat. Most tooling focuses on graph transformations and DSLs for\nterse, automated changes. Tools such as `Grew `__ and\n`Treex `__ are very powerful and\nproductive, but have a learning curve and are limited the scope of their\nDSLs. `CL-CoNLLU `__ is simple and\nlow level, but Common Lisp is not widely used in NLP, and difficult to\npickup for beginners. `UDAPI `__ is in python\nbut it is very large and has little guidance. pyconll attempts to fill\nthe gaps between what other projects have accomplished.\n\nOther useful tools can be found on the Universal Dependencies\n`website `__.\n\nHopefully, individual researchers find pyconll useful, and will use it\nas a building block for their tools and projects. pyconll affords a\nstandardized and complete base for building larger projects without\nworrying about CoNLL annotation and output.\n\nCode Snippet\n~~~~~~~~~~~~\n\n.. code:: python\n\n # This snippet finds what lemmas are marked as AUX which is a closed class POS in UD\n import pyconll\n\n UD_ENGLISH_TRAIN = './ud/train.conll'\n\n train = pyconll.load_from_file(UD_ENGLISH_TRAIN)\n\n aux_lemmas = set()\n for sentence in train:\n for token in sentence:\n if token.upos == 'AUX':\n aux_lemmas.add(token.lemma)\n\nUses and Limitations\n~~~~~~~~~~~~~~~~~~~~\n\nThis package edits CoNLL-U annotations. This does not include the\nannotated text itself. Word forms on Tokens are not editable and\nSentence Tokens cannot be reassigned or reordered. ``pyconll`` focuses\non editing CoNLL-U annotation rather than creating it or changing the\nunderlying text that is annotated. If there is interest in this\nfunctionality area, please create a github issue for more visibility.\n\nThis package also is only validated against the CoNLL-U format. The\nCoNLL and CoNLL-X format are not supported, but are very similar. I\noriginally intended to support these formats as well, but their format\nis not as well defined as CoNLL-U so they are not included. Please\ncreate an issue for visibility if this feature interests you.\n\nLastly, linguistic data can often be very large and this package\nattempts to keep that in mind. pyconll provides methods for creating in\nmemory conll objects along with an iterate only version in case a corpus\nis too large to store in memory (the size of the memory structure is\nseveral times larger than the actual corpus file). The iterate only\nversion can parse upwards of 100,000 words per second on a 16gb ram\nmachine, so for most datasets to be used on a dev machine, this package\nwill perform well. The 2.2.0 release also improves parse time and memory\nfootprint by about 25%!\n\nContributing\n~~~~~~~~~~~~\n\nContributions to this project are welcome and encouraged! If you are\nunsure how to contribute, here is a\n`guide `__\nfrom Github explaining the basic workflow. After cloning this repo,\nplease run ``make hooks`` and ``pip install -r requirements.txt`` to\nproperly setup locally. ``make hooks`` setups up a pre-push hook to\nvalidate that code matches the default YAPF style. While this is\ntechnically optional, it is highly encouraged.\n``pip install -r requirements.txt`` sets up environment dependencies\nlike ``yapf``, ``twine``, ``sphinx``, etc.\n\nREADME and CHANGELOG\n^^^^^^^^^^^^^^^^^^^^\n\nWhen changing either of these files, please change the Markdown version\nand run ``make docs`` so that the other versions stay in sync.\n\nCode Formatting\n^^^^^^^^^^^^^^^\n\nCode formatting is done automatically on push if githooks are setup\nproperly. The code formatter is\n`YAPF `__, and using this ensures that\ncoding style stays consistent over time and between authors.\n\n.. |Build Status| image:: https://travis-ci.org/pyconll/pyconll.svg?branch=master\n :target: https://travis-ci.org/pyconll/pyconll\n.. |Coverage Status| image:: https://coveralls.io/repos/github/pyconll/pyconll/badge.svg?branch=master\n :target: https://coveralls.io/github/pyconll/pyconll?branch=master\n.. |Documentation Status| image:: https://readthedocs.org/projects/pyconll/badge/?version=stable\n :target: https://pyconll.readthedocs.io/en/latest/?badge=latest\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/pyconll/pyconll", "keywords": "nlp,conllu,conll,universal dependencies", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "pyconll", "package_url": "https://pypi.org/project/pyconll/", "platform": "", "project_url": "https://pypi.org/project/pyconll/", "project_urls": { "Homepage": "https://github.com/pyconll/pyconll" }, "release_url": "https://pypi.org/project/pyconll/2.2.0/", "requires_dist": [ "requests (>=2.21)" ], "requires_python": "", "summary": "Read and maniuplate CoNLL files", "version": "2.2.0" }, "last_serial": 5916355, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "718596b09def286815b09ad97031b743", "sha256": "241027857061ac5dcece16da802c17b90fd02908e6bacaff438c3233d5327174" }, "downloads": -1, "filename": "pyconll-0.1.tar.gz", "has_sig": false, "md5_digest": "718596b09def286815b09ad97031b743", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4301, "upload_time": "2018-07-05T02:15:34", "url": "https://files.pythonhosted.org/packages/be/c6/9b97e83f6f099c4f8d3c0bc49fd397debeadfab7cba48a9402703634be4a/pyconll-0.1.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "1a7360c30954ae76ce4a4bf29ee9dc4a", "sha256": "8879cf97d885aad21ff9bb13b084962e59dc8da0937136f2add021b4f20bafbf" }, "downloads": -1, "filename": "pyconll-0.1.1.tar.gz", "has_sig": false, "md5_digest": "1a7360c30954ae76ce4a4bf29ee9dc4a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5296, "upload_time": "2018-07-15T06:36:45", "url": "https://files.pythonhosted.org/packages/b1/f6/723555df1ea182a9ec350c34fead167b9a7f1dc6085772014eac34de390c/pyconll-0.1.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "2d9663460a1f67cb3c7d26a6429a5b27", "sha256": "324aa1421bb5f10af447a179f586df8ab9c0220f8d8f9764edfcd40a36958925" }, "downloads": -1, "filename": "pyconll-0.2.tar.gz", "has_sig": false, "md5_digest": "2d9663460a1f67cb3c7d26a6429a5b27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6351, "upload_time": "2018-07-17T06:09:13", "url": "https://files.pythonhosted.org/packages/2c/f7/00fcb8033cbeb21e0d98256fcbe671d6eb957ce55a21b5942bdf42296042/pyconll-0.2.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "dc5b19c74a980b6e73842059e492d08e", "sha256": "ac9c759537c5cd71952098b6758ffacc01a9ae26c7e9c0cc030d5f92a88191ac" }, "downloads": -1, "filename": "pyconll-0.2.1.tar.gz", "has_sig": false, "md5_digest": "dc5b19c74a980b6e73842059e492d08e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6835, "upload_time": "2018-07-18T07:01:43", "url": "https://files.pythonhosted.org/packages/7f/fe/ec5c9a0ab15a873839d6f3901dd27d56e17c1da17ee592b05bd7736f178f/pyconll-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "2358ef8a51e258d74209bdd0bebf55a2", "sha256": "6af6c7cfb7e69f9d39b173d74773f889cb5ec238534de132344a29acb2617328" }, "downloads": -1, "filename": "pyconll-0.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "2358ef8a51e258d74209bdd0bebf55a2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 5968, "upload_time": "2018-07-24T04:38:57", "url": "https://files.pythonhosted.org/packages/65/af/f3dbd804304863abbf9a81ae0391a66909fe393d184967ec625e560a4022/pyconll-0.2.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5a2f4832f44d9fced65aa5919099485f", "sha256": "2403ae445157357f0d408d805debda4face8b103999ce68de1f30f8caa3c04f8" }, "downloads": -1, "filename": "pyconll-0.2.2.tar.gz", "has_sig": false, "md5_digest": "5a2f4832f44d9fced65aa5919099485f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6789, "upload_time": "2018-07-24T04:38:59", "url": "https://files.pythonhosted.org/packages/fc/50/57d32a95a564879c109ee21ff488f1a419ddc68fb8a6d467369c69bedacd/pyconll-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "fde58009ee21e5d117580ae7116a0a13", "sha256": "c895ed60a27d9cc66e4db0998c7278d4607c100344c6c78b8a4e01fbd96d3d8e" }, "downloads": -1, "filename": "pyconll-0.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "fde58009ee21e5d117580ae7116a0a13", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6134, "upload_time": "2018-07-24T04:55:20", "url": "https://files.pythonhosted.org/packages/bf/16/9a6a60c4cc696c3788a72ce1edc9d105e44ffaf8930ac3d5d2813758eaa3/pyconll-0.2.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b646aac2806ab316fdd505eef65b9b53", "sha256": "d0f0359646f2a731bc1881838f45e2db57fe33a139bee8a8abf783c38c33e324" }, "downloads": -1, "filename": "pyconll-0.2.3.tar.gz", "has_sig": false, "md5_digest": "b646aac2806ab316fdd505eef65b9b53", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7107, "upload_time": "2018-07-24T04:55:21", "url": "https://files.pythonhosted.org/packages/7f/6a/b7edc0fb58ecdfb85a392de6de64ce8073a8f0c7920e3725aa9829cba7e9/pyconll-0.2.3.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "41e5495b0b5741a41cb9a49c0b12e331", "sha256": "945884c84be3ff8489132156b92ccd9a01450eacf04d814789cce483759f51cf" }, "downloads": -1, "filename": "pyconll-0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "41e5495b0b5741a41cb9a49c0b12e331", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6701, "upload_time": "2018-07-28T07:39:16", "url": "https://files.pythonhosted.org/packages/9c/f7/8b6a77798a0c6f8c422f5632b98e7223a238797fcd9f216496f9cb51daad/pyconll-0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b95a15e8c1992c9133455f955a0bdda7", "sha256": "9778d744ff1cd892df75c61755dc4663ef17b64fafb2e21c41987b342e766e85" }, "downloads": -1, "filename": "pyconll-0.3.tar.gz", "has_sig": false, "md5_digest": "b95a15e8c1992c9133455f955a0bdda7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7565, "upload_time": "2018-07-28T07:39:17", "url": "https://files.pythonhosted.org/packages/c5/fe/6c3ba3c4a3e5286324a48862fac233ae6d457a0beccf30de257a07167806/pyconll-0.3.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "df7fbeb0b26c85d13b85aaec3cbd9b24", "sha256": "5ae2a5cc82b43e5a9d1d258401add823b0e1cca7141a126948a3b34f7ddd0664" }, "downloads": -1, "filename": "pyconll-0.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "df7fbeb0b26c85d13b85aaec3cbd9b24", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 15290, "upload_time": "2018-08-09T02:03:15", "url": "https://files.pythonhosted.org/packages/5f/93/03b43fa28585554f667ac40d6422ac50c604c4f2fc390f22c463447a33ff/pyconll-0.3.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cb61b77f7394d31ba1fdd7e6817a1358", "sha256": "82c649b518c3ee584c70a502c4cb851c8ed7f0296855c2edeacc5904c4b923c9" }, "downloads": -1, "filename": "pyconll-0.3.1.tar.gz", "has_sig": false, "md5_digest": "cb61b77f7394d31ba1fdd7e6817a1358", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16029, "upload_time": "2018-08-09T02:03:18", "url": "https://files.pythonhosted.org/packages/42/94/25511d8167d9f73314fe0bcb9b058bc34c1d66fc0c51d4afaa990ffcc743/pyconll-0.3.1.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "5c1392682615180fa82f4975cd4fc923", "sha256": "cc90937ea6c9effcd0098df506a07ecea0d186dce242b74bd3ad35400d9cc034" }, "downloads": -1, "filename": "pyconll-1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "5c1392682615180fa82f4975cd4fc923", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 28225, "upload_time": "2018-09-15T04:55:05", "url": "https://files.pythonhosted.org/packages/7e/2d/3867aac9794a5779e426ff09fc22b7e105cbca6ca1f271b8de198f0db0ea/pyconll-1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f5096f1a47037500509707911059a559", "sha256": "291018d6275d5dd3208cae478596bcf0abb0be386ec32867ade5ab2ffcd5c8d2" }, "downloads": -1, "filename": "pyconll-1.0.tar.gz", "has_sig": false, "md5_digest": "f5096f1a47037500509707911059a559", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28616, "upload_time": "2018-09-15T04:55:07", "url": "https://files.pythonhosted.org/packages/50/5d/21826e53ac48049dd33300da522feb46cf75b244fbdc7bca62e3d9b54e26/pyconll-1.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "fe992f116b1e8de299cc173bee98c35d", "sha256": "674d4c66e47415a33dc52bbdfab5cc78f5d6b0b7d28c6e9b0843b7b372a66e5e" }, "downloads": -1, "filename": "pyconll-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "fe992f116b1e8de299cc173bee98c35d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16748, "upload_time": "2018-09-15T05:04:48", "url": "https://files.pythonhosted.org/packages/f8/ce/c18cc38423c02b5dc0d9b3b41e78db21eb3086a31fef6901e5654d458ecf/pyconll-1.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0eff51bb96fa88a9092a9a6efb8dcaf4", "sha256": "9a9569c5c5164e975f7f2cca9e66ebe3d6e327e75d61d9e8e7655033b40f8623" }, "downloads": -1, "filename": "pyconll-1.0.1.tar.gz", "has_sig": false, "md5_digest": "0eff51bb96fa88a9092a9a6efb8dcaf4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17492, "upload_time": "2018-09-15T05:04:49", "url": "https://files.pythonhosted.org/packages/10/51/a18f105cbb9cf477f716cc9f7106a324ebc85576397474f00489ab1b0548/pyconll-1.0.1.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "90718c77f5d779e138cadac7d5f33dc1", "sha256": "1043888b6b08b57b2551397dac4abac1770082242613055654cb430ef6524fc2" }, "downloads": -1, "filename": "pyconll-1.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "90718c77f5d779e138cadac7d5f33dc1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18018, "upload_time": "2018-11-12T01:15:03", "url": "https://files.pythonhosted.org/packages/86/24/baababc6836484ec693858d033d526b7ce6cfcfaac88bf13dcd9ab124916/pyconll-1.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b32660665a0b0e603d430a32f00b6216", "sha256": "c25a9a5479ebf3039fa3146247d0ebeac16f9de16bbcc57df7c602e629ec3e25" }, "downloads": -1, "filename": "pyconll-1.1.0.tar.gz", "has_sig": false, "md5_digest": "b32660665a0b0e603d430a32f00b6216", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18179, "upload_time": "2018-11-12T01:15:05", "url": "https://files.pythonhosted.org/packages/4c/6c/5f801f4253be2eedc91a75c16a55eb4502122d9daccfb6b961ff91702776/pyconll-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "7f86470d94a260d931c7c5996c34cadd", "sha256": "5ab22669f973fcb09a31134f3bb02f19578218d35881e3382644da8b70256a3e" }, "downloads": -1, "filename": "pyconll-1.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "7f86470d94a260d931c7c5996c34cadd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 20231, "upload_time": "2018-12-11T07:00:10", "url": "https://files.pythonhosted.org/packages/ec/bf/8d011895638e320e5e30bd593b38afa134cabd3e0e56711ad47934397513/pyconll-1.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8fac7d1d01b9e7961f838fe5a6dca78a", "sha256": "67dd1e7bfe322f9660cfee7f2de462fc7ac0dc0359c6cf51ab5af8eee81977f9" }, "downloads": -1, "filename": "pyconll-1.1.1.tar.gz", "has_sig": false, "md5_digest": "8fac7d1d01b9e7961f838fe5a6dca78a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19513, "upload_time": "2018-12-11T07:00:12", "url": "https://files.pythonhosted.org/packages/18/98/d2e195f81263ddd26380865ff35da4639652766a4530bbb207213ead5b15/pyconll-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "7664cace7aaa6f16fcc374358969f8aa", "sha256": "cafc388cf25cda406ce4f72ec49be427d3ad90a97bbd65db5f81d8ebfb795610" }, "downloads": -1, "filename": "pyconll-1.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "7664cace7aaa6f16fcc374358969f8aa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 20240, "upload_time": "2018-12-28T22:14:28", "url": "https://files.pythonhosted.org/packages/a1/dc/c9c2c6e15e92e810ab041e21110abd8023db06d26c55040b73c9eda55a70/pyconll-1.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4b3a570c2594374014be0ea54153d09a", "sha256": "b225e157671a22d1366fe49e85910b55b911eec4e273c4fb0230f129cd2f600b" }, "downloads": -1, "filename": "pyconll-1.1.2.tar.gz", "has_sig": false, "md5_digest": "4b3a570c2594374014be0ea54153d09a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19546, "upload_time": "2018-12-28T22:14:30", "url": "https://files.pythonhosted.org/packages/5d/64/b6251cef687c315a29a210d3f6ef34a94d30e9411403f0f5df441eb12624/pyconll-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "56ddbfedfb447a6152d40b6ee78057e6", "sha256": "fb76fdbd3a89ea8340154c675f741365b924000a2de1bd2c8d49b804ef02b86d" }, "downloads": -1, "filename": "pyconll-1.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "56ddbfedfb447a6152d40b6ee78057e6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 20248, "upload_time": "2019-01-04T01:15:17", "url": "https://files.pythonhosted.org/packages/93/f4/5ba482b2e25983f9a29b70ea66ffe604205489e732e152cab10b0819df83/pyconll-1.1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e5456444db775322e816a5c91d1c3028", "sha256": "526801d7373d93d5abe850b45275d39d63ef087b1c39de6d3336e6533a599576" }, "downloads": -1, "filename": "pyconll-1.1.3.tar.gz", "has_sig": false, "md5_digest": "e5456444db775322e816a5c91d1c3028", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19562, "upload_time": "2019-01-04T01:15:19", "url": "https://files.pythonhosted.org/packages/fb/86/7966806861237f685f8e7e414b7104356943a68d1f1e28ef40183a5f29d1/pyconll-1.1.3.tar.gz" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "0fcf13d3df6e5577c1374858d98a0126", "sha256": "f179919b2fe7d8126ff14aea1ce589dba8892b31b173715e88757e6d2f3a9de3" }, "downloads": -1, "filename": "pyconll-1.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "0fcf13d3df6e5577c1374858d98a0126", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 20236, "upload_time": "2019-04-16T06:04:19", "url": "https://files.pythonhosted.org/packages/07/15/7b84b904db0e5ed009bf4e432cf20f5efacba3f8925ce0c4002dc62b1d0b/pyconll-1.1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "875a23e96455e881056c577e0f7fc8d4", "sha256": "f9dd9eaa0b34d5ea621ce1ab40c8aaa4ac6aedf074e150ab93f4d9e7303785eb" }, "downloads": -1, "filename": "pyconll-1.1.4.tar.gz", "has_sig": false, "md5_digest": "875a23e96455e881056c577e0f7fc8d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19636, "upload_time": "2019-04-16T06:04:21", "url": "https://files.pythonhosted.org/packages/97/32/73cab4aa157890a6d21552a3715015c24f236c6a25dd456c17388f56a95f/pyconll-1.1.4.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "cf14c0493021df680f12a0134768c060", "sha256": "2c63f37cbf61603c51d0379b41cfa201daa5baa6739440e2254304cf4013c972" }, "downloads": -1, "filename": "pyconll-2.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "cf14c0493021df680f12a0134768c060", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 20494, "upload_time": "2019-05-10T05:32:18", "url": "https://files.pythonhosted.org/packages/7e/75/16d80ca56da4a324b899da9a4829482ca8f614a14dca8c431b5c3db00e6f/pyconll-2.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f6a5fd7aa8f2a6cb1db3aa69c37b6a3f", "sha256": "8219fc66bd3c6de11de7b899f06a37885190109a302bbad1e3b34b220d20548a" }, "downloads": -1, "filename": "pyconll-2.0.0.tar.gz", "has_sig": false, "md5_digest": "f6a5fd7aa8f2a6cb1db3aa69c37b6a3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20169, "upload_time": "2019-05-10T05:32:20", "url": "https://files.pythonhosted.org/packages/15/01/2e33bd11564a8ed45f951c69ec917836d422a6fadb3bf96cdff3dfce4a75/pyconll-2.0.0.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "83376e0f968ce7d0331ac6c9682fbaea", "sha256": "200bd43d4b1871e72c966458306c037721d478d9fddbcaf3e25f7d7c2e9f58c6" }, "downloads": -1, "filename": "pyconll-2.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "83376e0f968ce7d0331ac6c9682fbaea", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22069, "upload_time": "2019-08-31T00:49:12", "url": "https://files.pythonhosted.org/packages/c4/de/cd5b7cbb77477e567f7ca8ab88d4db0709ce11bd8516c3b0db93d58e7cab/pyconll-2.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0414bcb1ce48395f63bc9e3074292e0f", "sha256": "03fb0fbff813c499d27ad0ff5eec7127563fe51c4435a78c21bf436dd9d7c95d" }, "downloads": -1, "filename": "pyconll-2.1.0.tar.gz", "has_sig": false, "md5_digest": "0414bcb1ce48395f63bc9e3074292e0f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21970, "upload_time": "2019-08-31T00:49:14", "url": "https://files.pythonhosted.org/packages/e4/76/2d72fbb76d2441035aa35e4362d6dab367224fac52767005edd32c8e2fd9/pyconll-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "25bf9f9085f901caca8fdcd753574b2a", "sha256": "62196fb4a4055b68ba8285b444ac0cf1ddc1a02864dd13d4821432dd01cffe3f" }, "downloads": -1, "filename": "pyconll-2.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "25bf9f9085f901caca8fdcd753574b2a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22060, "upload_time": "2019-09-05T02:43:04", "url": "https://files.pythonhosted.org/packages/38/74/d7d3f23bb57b1550afcbbe24c14539d890136703253b26a133ff3f805575/pyconll-2.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "84d857c675f357df9f567e443499a18d", "sha256": "30c01d9bbd2ed6ac3e23c644380af44882946ffc9184358991e9af9efc86f1e8" }, "downloads": -1, "filename": "pyconll-2.1.1.tar.gz", "has_sig": false, "md5_digest": "84d857c675f357df9f567e443499a18d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21961, "upload_time": "2019-09-05T02:43:05", "url": "https://files.pythonhosted.org/packages/5a/93/a781136c606151a5f9690d0077d2916a769070c538e737bd986ac86f89a2/pyconll-2.1.1.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "3e332e962a202c55bbe4d2547b138e19", "sha256": "741c0277e266bdd39e1670ca8f8e33e733f73620625e2b3b042c9e0fdce1949d" }, "downloads": -1, "filename": "pyconll-2.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "3e332e962a202c55bbe4d2547b138e19", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22171, "upload_time": "2019-10-02T06:18:36", "url": "https://files.pythonhosted.org/packages/31/f5/db8df60b9c4a8da28bf6d36eaea6f007ceea8b75e742104036416a786df0/pyconll-2.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4e10bc63605c2830cdfdde45e4117fe6", "sha256": "99a4871c2c7065e58f8d9792c493da63168a95db91b5f7cae624e79040380dbb" }, "downloads": -1, "filename": "pyconll-2.2.0.tar.gz", "has_sig": false, "md5_digest": "4e10bc63605c2830cdfdde45e4117fe6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22099, "upload_time": "2019-10-02T06:18:38", "url": "https://files.pythonhosted.org/packages/b9/1b/725ebb07d6396a480c4a01410160148b7f1fefd8249ca2ffdadace237da6/pyconll-2.2.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "3e332e962a202c55bbe4d2547b138e19", "sha256": "741c0277e266bdd39e1670ca8f8e33e733f73620625e2b3b042c9e0fdce1949d" }, "downloads": -1, "filename": "pyconll-2.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "3e332e962a202c55bbe4d2547b138e19", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22171, "upload_time": "2019-10-02T06:18:36", "url": "https://files.pythonhosted.org/packages/31/f5/db8df60b9c4a8da28bf6d36eaea6f007ceea8b75e742104036416a786df0/pyconll-2.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4e10bc63605c2830cdfdde45e4117fe6", "sha256": "99a4871c2c7065e58f8d9792c493da63168a95db91b5f7cae624e79040380dbb" }, "downloads": -1, "filename": "pyconll-2.2.0.tar.gz", "has_sig": false, "md5_digest": "4e10bc63605c2830cdfdde45e4117fe6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22099, "upload_time": "2019-10-02T06:18:38", "url": "https://files.pythonhosted.org/packages/b9/1b/725ebb07d6396a480c4a01410160148b7f1fefd8249ca2ffdadace237da6/pyconll-2.2.0.tar.gz" } ] }