{ "info": { "author": "Michael Wayne Goodman", "author_email": "goodman.m.w@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: Information Technology", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering :: Information Analysis", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Text Processing :: Linguistic", "Topic :: Utilities" ], "description": "# PyDelphin — Python libraries for DELPH-IN data\n\n[![PyPI Version](https://img.shields.io/pypi/v/pydelphin.svg)](https://pypi.org/project/PyDelphin/)\n![Python Support](https://img.shields.io/pypi/pyversions/pydelphin.svg)\n[![Build Status](https://travis-ci.org/delph-in/pydelphin.svg?branch=develop)](https://travis-ci.org/delph-in/pydelphin)\n[![Documentation Status](https://readthedocs.org/projects/pydelphin/badge/?version=latest)](https://pydelphin.readthedocs.io/en/latest/?badge=latest)\n\n[DELPH-IN](http://delph-in.net) is an international consortium of\nresearchers committed to producing precise, high-quality language\nprocessing tools and resources, primarily in the\n[HPSG](http://hpsg.stanford.edu/) syntactic and\n[MRS](http://moin.delph-in.net/RmrsTop) semantic frameworks, and\nPyDelphin is a suite of Python libraries for processing data and\ninteracting with tools in the DELPH-IN ecosystem. PyDelphin's goal is\nto lower the barriers to making use of DELPH-IN resources to help\nusers quickly build applications or perform experiments, and it has\nbeen successfully used for research into machine translation (e.g.,\n[Goodman, 2018][]), sentence chunking ([Muszy\u0144ska, 2016][]), neural\nsemantic parsing ([Buys & Blunsom, 2017][]), natural language\ngeneration ([Hajdik et al., 2019][]), and more.\n\n[Goodman, 2018]: https://goodmami.org/static/goodman-dissertation.pdf\n[Muszy\u0144ska, 2016]: https://www.aclweb.org/anthology/P16-3014\n[Buys & Blunsom, 2017]: https://www.aclweb.org/anthology/P17-1112\n[Hajdik et al., 2019]: https://www.aclweb.org/anthology/N19-1235\n\nDocumentation, including guides and an API reference, is available here:\nhttp://pydelphin.readthedocs.io/\n\nNew to PyDelphin? Want to see examples? Try the\n[walkthrough](https://pydelphin.readthedocs.io/en/latest/guides/walkthrough.html).\n\n## Installation and Upgrading\n\nGet the latest release of PyDelphin from [PyPI][]:\n\n```bash\n$ pip install pydelphin\n```\n\n[PyPI]: https://pypi.python.org/pypi/PyDelphin\n\nFor more information about requirements, installing from source, and\nrunning unit tests, please see the\n[documentation](https://pydelphin.readthedocs.io/en/latest/guides/setup.html).\n\nAPI changes in new versions are documented in the\n[CHANGELOG](https://github.com/delph-in/pydelphin/blob/develop/CHANGELOG.md),\nbut for any unexpected changes please [file an\nissue](https://github.com/delph-in/pydelphin/issues).\n\n## Features\n\nPyDelphin contains the following modules:\n\nSemantic Representations:\n- [`delphin.mrs`][]: [Minimal Recursion Semantics](http://moin.delph-in.net/MrsRfc)\n- [`delphin.eds`][]: [Elementary Dependency Structures](http://moin.delph-in.net/EdsTop)\n- [`delphin.dmrs`][]: [Dependency Minimal Recursion Semantics](http://moin.delph-in.net/RmrsDmrs)\n\nSemantic Components and Interfaces:\n- [`delphin.semi`][]: [Semantic Interface](http://moin.delph-in.net/SemiRfc)\n- [`delphin.vpm`][]: [Variable Property Mapping](http://moin.delph-in.net/RmrsVpm)\n- [`delphin.variable`][]: MRS variables\n- [`delphin.predicate`][]: [Semantic Predicates](http://moin.delph-in.net/PredicateRfc)\n- [`delphin.scope`][]: Underspecified scope\n- [`delphin.sembase`][]: Basic semantic structures\n- [`delphin.codecs`][]: A wide variety of serialization codecs for MRS, EDS, and DMRS\n\nGrammar and Parse Inspection:\n- [`delphin.derivation`][]: [Derivation trees](http://moin.delph-in.net/ItsdbDerivations)\n- [`delphin.tdl`][]: [Type-Description Language](http://moin.delph-in.net/TdlRfc)\n- [`delphin.tfs`][]: Feature structures and type hierarchies\n\nTokenization:\n- [`delphin.repp`][]: [Regular-Expression PreProcessor](http://moin.delph-in.net/ReppTop)\n- [`delphin.tokens`][]: [YY Token lattices](http://moin.delph-in.net/PetInput#YY_Input_Mode)\n- [`delphin.lnk`][]: Lnk surface alignments\n\nCorpus Management and Processing:\n- [`delphin.itsdb`][]: [\\[incr tsdb()\\]](http://moin.delph-in.net/ItsdbTop) profiles\n- [`delphin.tsdb`][]: Low-level interface to test suite databases\n- [`delphin.tsql`][]: [TSQL](http://moin.delph-in.net/TsqlRfc) test suite queries\n\nInterfaces with External Processors:\n- [`delphin.interface`][]: Structures for interacting with external processors\n- [`delphin.ace`][]: Python wrapper for common tasks using [ACE](http://sweaglesw.org/linguistics/ace/)\n- [`delphin.web`][]: Client for the [web API](http://moin.delph-in.net/ErgApi)\n\nCore Components and Command Line Interface:\n- [`delphin.commands`][]: Functional or CLI interface to common tasks\n- [`delphin.hierarchy`][]: Multiple-inheritance hierarchies\n- [`delphin.exceptions`][]: PyDelphin's basic exception classes\n\n\n[`delphin.codecs`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.codecs.html\n[`delphin.commands`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.commands.html\n[`delphin.derivation`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.derivation.html\n[`delphin.dmrs`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.dmrs.html\n[`delphin.eds`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.eds.html\n[`delphin.exceptions`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.exceptions.html\n[`delphin.hierarchy`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.hierarchy.html\n[`delphin.interface`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.interface.html\n[`delphin.ace`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.ace.html\n[`delphin.web`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.web.html\n[`delphin.tsdb`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.tsdb.html\n[`delphin.itsdb`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.itsdb.html\n[`delphin.lnk`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.lnk.html\n[`delphin.mrs`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.mrs.html\n[`delphin.predicate`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.predicate.html\n[`delphin.repp`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.repp.html\n[`delphin.scope`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.scope.html\n[`delphin.sembase`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.sembase.html\n[`delphin.semi`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.semi.html\n[`delphin.tdl`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.tdl.html\n[`delphin.tfs`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.tfs.html\n[`delphin.tokens`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.tokens.html\n[`delphin.tsql`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.tsql.html\n[`delphin.variable`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.variable.html\n[`delphin.vpm`]: https://pydelphin.readthedocs.io/en/latest/api/delphin.vpm.html\n\n\n## Other Information\n\n### Acknowledgments\n\nThanks to PyDelphin's\n[contributors](https://github.com/delph-in/pydelphin/graphs/contributors)\nand all who've participated by filing issues and feature\nrequests. Also thanks to the users of PyDelphin!\n\n### Related Software\n\n* Parser/Generators (chronological order)\n - LKB: http://moin.delph-in.net/LkbTop (also: http://moin.delph-in.net/LkbFos)\n - PET: http://moin.delph-in.net/PetTop\n - ACE: http://sweaglesw.org/linguistics/ace/\n - agree: http://moin.delph-in.net/AgreeTop\n* Grammar profiling, testing, and analysis\n - \\[incr tsdb()\\]: http://www.delph-in.net/itsdb/\n - gDelta: https://github.com/ned2/gdelta\n - Typediff: https://github.com/ned2/typediff\n* Software libraries and repositories\n - LOGON: http://moin.delph-in.net/LogonTop\n - pydmrs: https://github.com/delph-in/pydmrs\n* Also see (may have overlap with the above):\n - http://moin.delph-in.net/ToolsTop\n - http://moin.delph-in.net/DelphinApplications\n\n### Spelling\n\nEarlier versions of PyDelphin were spelled \"pyDelphin\" with a\nlower-case \"p\" and this form is used in several publications. The\ncurrent recommended spelling has an upper-case \"P\".\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/delph-in/pydelphin", "keywords": "nlp semantics hpsg delph-in linguistics", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "PyDelphin", "package_url": "https://pypi.org/project/PyDelphin/", "platform": "", "project_url": "https://pypi.org/project/PyDelphin/", "project_urls": { "Homepage": "https://github.com/delph-in/pydelphin" }, "release_url": "https://pypi.org/project/PyDelphin/1.0.2/", "requires_dist": [ "penman (==0.6.2)", "networkx (==2.3)", "sphinx (==2.1.2) ; extra == 'dev'", "sphinx-rtd-theme (==0.4.3) ; extra == 'dev'", "sphinx-autodoc-typehints (==1.6.0) ; extra == 'dev'", "delphin.highlight (==1.0.0) ; extra == 'dev'", "requests (==2.22.0) ; extra == 'dev'", "falcon (==2.0.0) ; extra == 'dev'", "pytest ; extra == 'dev'", "setuptools (>=38.6.0) ; extra == 'dev'", "wheel (>=0.31.0) ; extra == 'dev'", "twine (>=1.11.0) ; extra == 'dev'", "sphinx (==2.1.2) ; extra == 'docs'", "sphinx-rtd-theme (==0.4.3) ; extra == 'docs'", "sphinx-autodoc-typehints (==1.6.0) ; extra == 'docs'", "delphin.highlight (==1.0.0) ; extra == 'docs'", "requests (==2.22.0) ; extra == 'docs'", "falcon (==2.0.0) ; extra == 'docs'", "pytest ; extra == 'tests'", "requests (==2.22.0) ; extra == 'web'", "falcon (==2.0.0) ; extra == 'web'" ], "requires_python": "", "summary": "Libraries and scripts for DELPH-IN data", "version": "1.0.2" }, "last_serial": 5707712, "releases": { "0.4.0": [ { "comment_text": "", "digests": { "md5": "e5fac7d438533372272ce72409f40a3b", "sha256": "f26b8c5c9dbdca18d7b38bf2510fe5a86dff794eba7d4fe0c83fa46e9bc106cc" }, "downloads": -1, "filename": "pyDelphin-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e5fac7d438533372272ce72409f40a3b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 89097, "upload_time": "2016-03-03T19:54:28", "url": "https://files.pythonhosted.org/packages/41/5a/20e560a59958758158ce3bd892787b1d821f935bc4821a695f91c58ee115/pyDelphin-0.4.0-py2.py3-none-any.whl" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "8fb87652cfceec687e56c924a416577f", "sha256": "3c18f1793e1dce7bae33a8eeaf8a8c6f06a56fb052a7d82aee314705efd4f479" }, "downloads": -1, "filename": "pyDelphin-0.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8fb87652cfceec687e56c924a416577f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 85332, "upload_time": "2016-04-20T17:54:24", "url": "https://files.pythonhosted.org/packages/a2/69/d07d3dda0be4e3c71b1f8b4b61fed93896be98a93d1cb29474e6f07b94a9/pyDelphin-0.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "777d2a1c86c25f55bc67e9c51b9f1605", "sha256": "696e2520456408e7034e48e137cfd2e5eac1923fac4e7a14366745f599638759" }, "downloads": -1, "filename": "pyDelphin-0.4.1.tar.gz", "has_sig": false, "md5_digest": "777d2a1c86c25f55bc67e9c51b9f1605", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74591, "upload_time": "2016-04-20T17:54:45", "url": "https://files.pythonhosted.org/packages/b5/d9/e55f04315c5eb121e59ce7ebd5f1c1135d8de406f3123455857d7df36b68/pyDelphin-0.4.1.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "60368539b7e949242f7936d50a0167cd", "sha256": "3bcd04ce80dea2edc641eb0bc223e52a287818c696501b16d1ae769bb797b013" }, "downloads": -1, "filename": "pyDelphin-0.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "60368539b7e949242f7936d50a0167cd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 98017, "upload_time": "2016-06-18T22:20:30", "url": "https://files.pythonhosted.org/packages/e7/8e/7c319a7ee38b31683f59a53adb40f545eddd47c95be1efc3c906fd97f2b8/pyDelphin-0.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b58a9c3bbaafea9258d0d19bea7216ab", "sha256": "83a69b9903e0c7a4cc3d44cc73deeb26b067073e78e148d95cab9ff9033d7f33" }, "downloads": -1, "filename": "pyDelphin-0.5.0.tar.gz", "has_sig": false, "md5_digest": "b58a9c3bbaafea9258d0d19bea7216ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86231, "upload_time": "2016-06-18T22:20:37", "url": "https://files.pythonhosted.org/packages/70/90/9472610fba644a764e080185010fb1093f1cedcb2db57140e89e0831fc27/pyDelphin-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "4cd36b02df3db9a511fbc7b468978dfc", "sha256": "a39cfc5680e2639f53701c2df94eae1b8856b3a54f834d74dc49ab12be71094f" }, "downloads": -1, "filename": "pyDelphin-0.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4cd36b02df3db9a511fbc7b468978dfc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 97438, "upload_time": "2016-07-18T21:39:06", "url": "https://files.pythonhosted.org/packages/24/74/5ae83458b60098dca6e89cbad62b55e404d3b442a4032eb67ea920947ef1/pyDelphin-0.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5120bf09a898c1a80154c99bab1aefda", "sha256": "f4f6c6939810f3d77a1c3bfe988023b38fa9df16b5d51ac93faf9358f67acd42" }, "downloads": -1, "filename": "pyDelphin-0.5.1.tar.gz", "has_sig": false, "md5_digest": "5120bf09a898c1a80154c99bab1aefda", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 84903, "upload_time": "2016-07-18T21:39:09", "url": "https://files.pythonhosted.org/packages/c1/bc/bf98d32aff53c65c697cdfd1aad07b73dc5f4c44f335cf8230cf073cfdae/pyDelphin-0.5.1.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "6770d6e2c3cc0931ee42eb9851854401", "sha256": "da93d807cbefcdef8c2ad208817e0b9a218f6c83ecbd16479770316b34327782" }, "downloads": -1, "filename": "PyDelphin-0.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6770d6e2c3cc0931ee42eb9851854401", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 109548, "upload_time": "2017-01-20T03:07:04", "url": "https://files.pythonhosted.org/packages/1b/83/2a6301e4f2405d37d7894e4d5e277c49919184e6c430b3bd83952cb1b917/PyDelphin-0.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b34cf26d22e37595b63e757b8ccbe8a5", "sha256": "d866e2d05224c5a8d5716a674249b4fe65956774100a53f18c1b819457b15808" }, "downloads": -1, "filename": "PyDelphin-0.6.0.tar.gz", "has_sig": false, "md5_digest": "b34cf26d22e37595b63e757b8ccbe8a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95062, "upload_time": "2017-01-20T03:07:07", "url": "https://files.pythonhosted.org/packages/ca/fd/a421ed201e545598326c680d2b6ab4a6fb96a3aab104d355fcb6097c14e8/PyDelphin-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "c0399fdc4e79a1c875e5e19f56b05386", "sha256": "70fbf3cef639880c6591ba6ae4e014a91d60613717660f829ccecddc80344afd" }, "downloads": -1, "filename": "PyDelphin-0.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c0399fdc4e79a1c875e5e19f56b05386", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 110676, "upload_time": "2017-04-05T23:23:27", "url": "https://files.pythonhosted.org/packages/09/e7/c9af3f08a2f306fe886545e702cee44d291216f648a15a155488966d48a7/PyDelphin-0.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a6df539c71caa50cf90ffa42c20559ce", "sha256": "12c78dfee8344789ff8ddea0f435c74158110e86edb96019ed83a69f33bf9ec9" }, "downloads": -1, "filename": "PyDelphin-0.6.1.tar.gz", "has_sig": false, "md5_digest": "a6df539c71caa50cf90ffa42c20559ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96140, "upload_time": "2017-04-05T23:23:29", "url": "https://files.pythonhosted.org/packages/ee/91/6e48d0a9579fe6608bdd4c770573933a7c833e6ad4e1b2dcc62ff27bd70a/PyDelphin-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "c464abee0d1c65f1cc8b66931f4c7762", "sha256": "419f6bbad82750e638b60dcb4a19bcfe3e1b25737fdcafb7a4ba2e03e1003c07" }, "downloads": -1, "filename": "PyDelphin-0.6.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c464abee0d1c65f1cc8b66931f4c7762", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 111406, "upload_time": "2017-06-01T21:17:20", "url": "https://files.pythonhosted.org/packages/7b/7d/04a2c0461f1ee5aea4952147fe6d948b48b9e7feb2290005aeaf48607f75/PyDelphin-0.6.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1cdbc128d6ab18c718875c5164b2f15a", "sha256": "1e7bdc33cd9dd9f81d0daf17941d74e0b76a86806d2836f4bc8a35a6186bbf35" }, "downloads": -1, "filename": "PyDelphin-0.6.2.tar.gz", "has_sig": false, "md5_digest": "1cdbc128d6ab18c718875c5164b2f15a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96872, "upload_time": "2017-06-01T21:17:24", "url": "https://files.pythonhosted.org/packages/3d/7c/067619eeeaf4a2f9fe8c53265cb3ae7e8e1f3701b0275e1fe510d7576225/PyDelphin-0.6.2.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "22b0e66658f0b8afadd5e7c9eb1b9f91", "sha256": "228f342c160262215b9c638216c222cb83bdf240fd0170138306f2752ff8540c" }, "downloads": -1, "filename": "PyDelphin-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "22b0e66658f0b8afadd5e7c9eb1b9f91", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 123968, "upload_time": "2018-05-07T23:01:02", "url": "https://files.pythonhosted.org/packages/41/01/40d7f360deb8ce9e033ca99f24da9687828bd4ab41612ae0bae69de1246e/PyDelphin-0.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "18659120fc189f9c61ca340b83624c97", "sha256": "a30732e5381d767f788fd94627e97028c06aba867581eb6fcf8d4e3c440b0a5b" }, "downloads": -1, "filename": "PyDelphin-0.7.0.tar.gz", "has_sig": false, "md5_digest": "18659120fc189f9c61ca340b83624c97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 107878, "upload_time": "2018-05-07T23:01:03", "url": "https://files.pythonhosted.org/packages/c5/d3/15428d0c987becd598a50c3f10a918c2ba43576b90a30f1bfe9caa9e9f86/PyDelphin-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "423db6f2b25f485acbb2dd51cfde0159", "sha256": "45f36dfa88a87df734ab94717802cb0aa68a89d555eae5576d74f9fedee468f2" }, "downloads": -1, "filename": "PyDelphin-0.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "423db6f2b25f485acbb2dd51cfde0159", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 129849, "upload_time": "2018-06-08T20:17:57", "url": "https://files.pythonhosted.org/packages/4e/ae/c1097b9671fd0b1c23311bc67abb15cd61edd029c64726109eceddb8f141/PyDelphin-0.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "33c08c10bd4739d5646bff08a445c6d0", "sha256": "195d5ba5607a952ea02bde6a4cf97b8f0257a91c278405b3dfcf10ab19eccbf9" }, "downloads": -1, "filename": "PyDelphin-0.7.1.tar.gz", "has_sig": false, "md5_digest": "33c08c10bd4739d5646bff08a445c6d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117440, "upload_time": "2018-06-08T20:17:58", "url": "https://files.pythonhosted.org/packages/c4/81/2fa2aef9ec315b2c6577e94c386cee5dc60acfe1b6c59cba391ce906afaa/PyDelphin-0.7.1.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "c2a6d5888df2f93a25c718cde375d8bc", "sha256": "cd03436248568a3a9fe8808912a95bb578f8565ce0b4b91d8c9a47012d21a09f" }, "downloads": -1, "filename": "PyDelphin-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c2a6d5888df2f93a25c718cde375d8bc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 141026, "upload_time": "2018-08-22T22:47:08", "url": "https://files.pythonhosted.org/packages/36/cb/a1fe5e6c9eef03382c3c30d0a760d102f39223f217a7c1b0836e7355a9c2/PyDelphin-0.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1eb772a34ba3b364f7e5b25b99eca797", "sha256": "35f3a5f09f6a3e72390be8d3e95bf9cecb8eb1c5924a694909464dc0939d54b3" }, "downloads": -1, "filename": "PyDelphin-0.8.0.tar.gz", "has_sig": false, "md5_digest": "1eb772a34ba3b364f7e5b25b99eca797", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 125641, "upload_time": "2018-08-22T22:47:09", "url": "https://files.pythonhosted.org/packages/58/1e/1a9b98f89a5007f244caf3362839982623a328336d035840d98969414dda/PyDelphin-0.8.0.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "8ecb6165f03f9a1f9d6273d7d2360278", "sha256": "859476eb1f52520c385aa9081558b5ab7bbbd7aecef9b9bc36bb2a70094ddd39" }, "downloads": -1, "filename": "PyDelphin-0.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8ecb6165f03f9a1f9d6273d7d2360278", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 167540, "upload_time": "2018-10-19T18:19:50", "url": "https://files.pythonhosted.org/packages/d3/30/788adf8a1a1887f2936e11210cd4bddcc72aa1d09b298301a5301cd370b4/PyDelphin-0.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a3355c76cbf6579e6685362140be9883", "sha256": "c59c542f3920081b994d9634b8072f01230b0e0dfa8fa6da6f07209fd3855944" }, "downloads": -1, "filename": "PyDelphin-0.9.0.tar.gz", "has_sig": false, "md5_digest": "a3355c76cbf6579e6685362140be9883", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 149612, "upload_time": "2018-10-19T18:19:53", "url": "https://files.pythonhosted.org/packages/9f/30/85e3b18cd1179840aada6ca33250d47d0b2b9685febf9b3701ad58966cbf/PyDelphin-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "d4c06623e11c529fb9303f7f063b3b23", "sha256": "20c0ef980dc22e56cdd71fb138bf45f615281a9de9e4e99252c5761691225683" }, "downloads": -1, "filename": "PyDelphin-0.9.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d4c06623e11c529fb9303f7f063b3b23", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 167536, "upload_time": "2018-10-31T05:55:16", "url": "https://files.pythonhosted.org/packages/a0/e6/21128820f458415a023b55cd34ba90ce9210006f43848d4441b44284433c/PyDelphin-0.9.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c51c02953f8451c1d9f7125a4f4d6cef", "sha256": "e1ef7646dd8dc1238076d90a71f72b14dcb65c346dfb1b1f6b908eb0f62e6c0c" }, "downloads": -1, "filename": "PyDelphin-0.9.1.tar.gz", "has_sig": false, "md5_digest": "c51c02953f8451c1d9f7125a4f4d6cef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 150911, "upload_time": "2018-10-31T05:55:18", "url": "https://files.pythonhosted.org/packages/61/39/ff9a0fbc6b90c8e3c93f87e29c033de063122e51612ac2bb2ce484b3fe30/PyDelphin-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "cc25385b3c07678ea8c46b29f3c929eb", "sha256": "f43cf7d3a95d2ac3b203a0315be15ba0deba600a9e129e8c03905fac95779fe2" }, "downloads": -1, "filename": "PyDelphin-0.9.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cc25385b3c07678ea8c46b29f3c929eb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 173104, "upload_time": "2019-04-01T09:12:46", "url": "https://files.pythonhosted.org/packages/f9/14/c522ee87e866c24bcc288a5485980d325e27fdd957899c64b442a9bd460c/PyDelphin-0.9.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "148a9008fbeb5e268843d9488da6672f", "sha256": "997deb2dd861cddef6691ae6ca699f0b8cd186934b0a7ebea5d4f8fe058dda9a" }, "downloads": -1, "filename": "PyDelphin-0.9.2.tar.gz", "has_sig": false, "md5_digest": "148a9008fbeb5e268843d9488da6672f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 155791, "upload_time": "2019-04-01T09:12:48", "url": "https://files.pythonhosted.org/packages/eb/b3/d709758adff886e3e1e495218770a19541eb1e16b527458425cecca81b23/PyDelphin-0.9.2.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "7eaccabb3826b3b8ac80ba0eeb2b7f9c", "sha256": "ffdca496617c1d59eec3466ad4cd10c5f5a93f27279099496ae53420ac24e52a" }, "downloads": -1, "filename": "PyDelphin-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7eaccabb3826b3b8ac80ba0eeb2b7f9c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 163795, "upload_time": "2019-08-14T03:13:44", "url": "https://files.pythonhosted.org/packages/44/41/d922b7618612190011b92d11e14d77190d652c396baf9714ce7205a72588/PyDelphin-1.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "50feb9c9543300815c25171f2f1aa04c", "sha256": "4f2735a610a5d2bc7382d1e982c491bf8eae8c188b822b2f0ac5f1b0b353002c" }, "downloads": -1, "filename": "PyDelphin-1.0.0.tar.gz", "has_sig": false, "md5_digest": "50feb9c9543300815c25171f2f1aa04c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 134175, "upload_time": "2019-08-14T03:13:47", "url": "https://files.pythonhosted.org/packages/ba/4c/c6c3b007c61792514543ae63ae3fc33225157fc091b77775e1046e3cbf30/PyDelphin-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "5491b22ea8825ffa18bfcd7733332068", "sha256": "c5cc4bf9435255f62b775aec7880aa75b2d352f901bd32ea76b57805e13d83e9" }, "downloads": -1, "filename": "PyDelphin-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "5491b22ea8825ffa18bfcd7733332068", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 163827, "upload_time": "2019-08-15T02:29:54", "url": "https://files.pythonhosted.org/packages/0b/d6/f209d7da74ae40d2719e4c640036f49253519d86e924a24b086bd8e8e728/PyDelphin-1.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fd763be2d258e8dd0cc2df53d608d17f", "sha256": "b714664c25ff85960021b220646754a34354eb93681d8c24bc36dbf915b60bf3" }, "downloads": -1, "filename": "PyDelphin-1.0.1.tar.gz", "has_sig": false, "md5_digest": "fd763be2d258e8dd0cc2df53d608d17f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 137169, "upload_time": "2019-08-15T02:29:57", "url": "https://files.pythonhosted.org/packages/0f/d8/9ebd7b5e4e2751fbdf17cb5c3223feed4f55794018a29426c200c818bb26/PyDelphin-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "8214ef0558103051a8b696b6510643f7", "sha256": "19818393f2239e811897510bccdc06355c74956c266b45b7e53a589c8c629fc9" }, "downloads": -1, "filename": "PyDelphin-1.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "8214ef0558103051a8b696b6510643f7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 164130, "upload_time": "2019-08-21T08:01:50", "url": "https://files.pythonhosted.org/packages/1b/3c/ea2afdf1a3bbf0ba1019a213af6c01462d2faef0b9c2adc1945837444b20/PyDelphin-1.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bdecfa329556773ed5c700e5a53b19c5", "sha256": "db079dc2716226326c0674e4afcb4761c20aa9287d93b696b4960d9bc57b5dff" }, "downloads": -1, "filename": "PyDelphin-1.0.2.tar.gz", "has_sig": false, "md5_digest": "bdecfa329556773ed5c700e5a53b19c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 134524, "upload_time": "2019-08-21T08:01:53", "url": "https://files.pythonhosted.org/packages/3b/c5/ec97fbc58571248d561f68bc606364dc20f25de43feb3a98b9f67124e822/PyDelphin-1.0.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "8214ef0558103051a8b696b6510643f7", "sha256": "19818393f2239e811897510bccdc06355c74956c266b45b7e53a589c8c629fc9" }, "downloads": -1, "filename": "PyDelphin-1.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "8214ef0558103051a8b696b6510643f7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 164130, "upload_time": "2019-08-21T08:01:50", "url": "https://files.pythonhosted.org/packages/1b/3c/ea2afdf1a3bbf0ba1019a213af6c01462d2faef0b9c2adc1945837444b20/PyDelphin-1.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bdecfa329556773ed5c700e5a53b19c5", "sha256": "db079dc2716226326c0674e4afcb4761c20aa9287d93b696b4960d9bc57b5dff" }, "downloads": -1, "filename": "PyDelphin-1.0.2.tar.gz", "has_sig": false, "md5_digest": "bdecfa329556773ed5c700e5a53b19c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 134524, "upload_time": "2019-08-21T08:01:53", "url": "https://files.pythonhosted.org/packages/3b/c5/ec97fbc58571248d561f68bc606364dc20f25de43feb3a98b9f67124e822/PyDelphin-1.0.2.tar.gz" } ] }