parsy


Nameparsy JSON
Version 2.1 PyPI version JSON
download
home_pagehttps://github.com/python-parsy/parsy
SummaryEasy-to-use parser combinators, for parsing in pure Python
upload_time2023-02-22 15:26:55
maintainerLuke Plant
docs_urlNone
authorJeanine Adkisson
requires_python>=3.7
licenseMIT
keywords parser parsers parsing monad combinators
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            parsy
=====

|Documentation Status| |Build Status| |Codecov| |Downloads|

Parsy is an easy and elegant way to parse text in Python by combining small
parsers into complex, larger parsers. If it means anything to you, it's a
monadic parser combinator library for LL(infinity) grammars in the spirit of
`Parsec <https://github.com/haskell/parsec>`_, `Parsnip
<http://parsnip-parser.sourceforge.net/>`_, and `Parsimmon
<https://github.com/jneen/parsimmon>`_. But don't worry, it has really good
documentation and it doesn't say things like that!

Parsy requires Python 3.7 or greater.

For a good example of the kind of clear, declarative code you can create using
parsy, see the `SQL SELECT statement example
<https://parsy.readthedocs.io/en/latest/howto/other_examples.html#sql-select-statement-parser>`_
or `JSON parser
<https://parsy.readthedocs.io/en/latest/howto/other_examples.html#json-parser>`_.

Links:

- `Documentation <http://parsy.readthedocs.io/en/latest/>`_
- `History and changelog <http://parsy.readthedocs.io/en/latest/history.html>`_
- `PyPI <https://pypi.python.org/pypi/parsy/>`_

To contribute, please create a fork and submit a pull request on GitHub, after
checking the `contributing
<https://parsy.readthedocs.io/en/latest/contributing.html>`_ section of the
docs. Thanks!

If you like parsy and think it should be better known, you could:

* Star this project on GitHub.
* `Vote <https://github.com/vinta/awesome-python/pull/993>`_ for it being included on awesome-python.

Parsy was originally written by `Jeanine Adkisson <https://github.com/jneen>`_,
with contributions by other people as can be found in the git commit history.

.. |Documentation Status| image:: https://readthedocs.org/projects/parsy/badge/?version=latest
   :target: http://parsy.readthedocs.io/en/latest/?badge=latest
.. |Build Status| image:: https://img.shields.io/github/actions/workflow/status/python-parsy/parsy/tests.yml?branch=master
   :target: https://github.com/python-parsy/parsy/actions?query=workflow%3A%22Tests%22+branch%3Amaster
.. |Codecov| image:: https://img.shields.io/codecov/c/github/python-parsy/parsy/master.svg
   :target: https://codecov.io/gh/python-parsy/parsy
.. |Downloads| image:: https://img.shields.io/pypi/dm/parsy
   :target: https://pypi.org/project/parsy/



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/python-parsy/parsy",
    "name": "parsy",
    "maintainer": "Luke Plant",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "L.Plant.98@cantab.net",
    "keywords": "parser parsers parsing monad combinators",
    "author": "Jeanine Adkisson",
    "author_email": "jneen@jneen.net",
    "download_url": "https://files.pythonhosted.org/packages/53/ea/e0853951be3b3e0ca41f962971816065b671ac88e257b99abcd0879198ce/parsy-2.1.tar.gz",
    "platform": null,
    "description": "parsy\n=====\n\n|Documentation Status| |Build Status| |Codecov| |Downloads|\n\nParsy is an easy and elegant way to parse text in Python by combining small\nparsers into complex, larger parsers. If it means anything to you, it's a\nmonadic parser combinator library for LL(infinity) grammars in the spirit of\n`Parsec <https://github.com/haskell/parsec>`_, `Parsnip\n<http://parsnip-parser.sourceforge.net/>`_, and `Parsimmon\n<https://github.com/jneen/parsimmon>`_. But don't worry, it has really good\ndocumentation and it doesn't say things like that!\n\nParsy requires Python 3.7 or greater.\n\nFor a good example of the kind of clear, declarative code you can create using\nparsy, see the `SQL SELECT statement example\n<https://parsy.readthedocs.io/en/latest/howto/other_examples.html#sql-select-statement-parser>`_\nor `JSON parser\n<https://parsy.readthedocs.io/en/latest/howto/other_examples.html#json-parser>`_.\n\nLinks:\n\n- `Documentation <http://parsy.readthedocs.io/en/latest/>`_\n- `History and changelog <http://parsy.readthedocs.io/en/latest/history.html>`_\n- `PyPI <https://pypi.python.org/pypi/parsy/>`_\n\nTo contribute, please create a fork and submit a pull request on GitHub, after\nchecking the `contributing\n<https://parsy.readthedocs.io/en/latest/contributing.html>`_ section of the\ndocs. Thanks!\n\nIf you like parsy and think it should be better known, you could:\n\n* Star this project on GitHub.\n* `Vote <https://github.com/vinta/awesome-python/pull/993>`_ for it being included on awesome-python.\n\nParsy was originally written by `Jeanine Adkisson <https://github.com/jneen>`_,\nwith contributions by other people as can be found in the git commit history.\n\n.. |Documentation Status| image:: https://readthedocs.org/projects/parsy/badge/?version=latest\n   :target: http://parsy.readthedocs.io/en/latest/?badge=latest\n.. |Build Status| image:: https://img.shields.io/github/actions/workflow/status/python-parsy/parsy/tests.yml?branch=master\n   :target: https://github.com/python-parsy/parsy/actions?query=workflow%3A%22Tests%22+branch%3Amaster\n.. |Codecov| image:: https://img.shields.io/codecov/c/github/python-parsy/parsy/master.svg\n   :target: https://codecov.io/gh/python-parsy/parsy\n.. |Downloads| image:: https://img.shields.io/pypi/dm/parsy\n   :target: https://pypi.org/project/parsy/\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Easy-to-use parser combinators, for parsing in pure Python",
    "version": "2.1",
    "project_urls": {
        "Homepage": "https://github.com/python-parsy/parsy"
    },
    "split_keywords": [
        "parser",
        "parsers",
        "parsing",
        "monad",
        "combinators"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3051c84e2ebd1eb2817d92ae05a917e60e57b1c83f7b89e63c31df2cd6fcb70",
                "md5": "4b9ae7c22e1219011e2dabdff2932094",
                "sha256": "8f18e7b11985e7802e7e3ecbd8291c6ca243d29820b1186e4c84605db4efffa0"
            },
            "downloads": -1,
            "filename": "parsy-2.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4b9ae7c22e1219011e2dabdff2932094",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 9111,
            "upload_time": "2023-02-22T15:26:53",
            "upload_time_iso_8601": "2023-02-22T15:26:53.793130Z",
            "url": "https://files.pythonhosted.org/packages/b3/05/1c84e2ebd1eb2817d92ae05a917e60e57b1c83f7b89e63c31df2cd6fcb70/parsy-2.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "53eae0853951be3b3e0ca41f962971816065b671ac88e257b99abcd0879198ce",
                "md5": "767cbde9179014ab26af8c532909c5a5",
                "sha256": "fd5dd18d7b0b61f8275ee88665f430a20c02cf5a82d88557f35330530186d7ac"
            },
            "downloads": -1,
            "filename": "parsy-2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "767cbde9179014ab26af8c532909c5a5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 45252,
            "upload_time": "2023-02-22T15:26:55",
            "upload_time_iso_8601": "2023-02-22T15:26:55.628197Z",
            "url": "https://files.pythonhosted.org/packages/53/ea/e0853951be3b3e0ca41f962971816065b671ac88e257b99abcd0879198ce/parsy-2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-02-22 15:26:55",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "python-parsy",
    "github_project": "parsy",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "parsy"
}
        
Elapsed time: 0.07195s