sexpdata


Namesexpdata JSON
Version 1.0.2 PyPI version JSON
download
home_pagehttps://github.com/jd-boyd/sexpdata
SummaryS-expression parser for Python
upload_time2024-01-09 07:09:59
maintainer
docs_urlNone
authorJoshua D. Boyd, Takafumi Arakaki
requires_python>=3.7
licenseBSD 2-Clause License Copyright (c) 2019, Joshua Boyd 'jd-boyd' All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
keywords s-expression lisp parser
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            S-expression parser for Python
==============================

`sexpdata` is a simple S-expression parser/serializer.  It has
simple `load` and `dump` functions like `pickle`, `json` or `PyYAML`
module.

>>> from sexpdata import loads, dumps
>>> loads('("a" "b")')
['a', 'b']
>>> print(dumps(['a', 'b']))
("a" "b")


You can install `sexpdata` from PyPI_::

  pip install sexpdata


Links:

* `Documentation (at Read the Docs) <http://sexpdata.readthedocs.org/>`_
* `Repository (at GitHub) <https://github.com/jd-boyd/sexpdata>`_
* `Issue tracker (at GitHub) <https://github.com/jd-boyd/sexpdata/issues>`_
* `PyPI <http://pypi.python.org/pypi/sexpdata>`_
* `Travis CI <https://travis-ci.org/#!/jd-boyd/sexpdata>`_


Making a release
----------------

1. `python -m build`
1. `twine check dist/*`
1. `git tag v1.0.x`
1. `twine upload dist/*`


License
-------

`sexpdata` is licensed under the terms of the BSD 2-Clause License.
See the source code for more information.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/jd-boyd/sexpdata",
    "name": "sexpdata",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "s-expression,lisp,parser",
    "author": "Joshua D. Boyd, Takafumi Arakaki",
    "author_email": "\"Joshua D. Boyd\" <jdboyd@jdboyd.net>, Takafumi Arakaki <aka.tkf@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/a7/7f/369a478863a39351be75e0a12602bc29196b31f87bf3432bed2be6379f8e/sexpdata-1.0.2.tar.gz",
    "platform": null,
    "description": "S-expression parser for Python\n==============================\n\n`sexpdata` is a simple S-expression parser/serializer.  It has\nsimple `load` and `dump` functions like `pickle`, `json` or `PyYAML`\nmodule.\n\n>>> from sexpdata import loads, dumps\n>>> loads('(\"a\" \"b\")')\n['a', 'b']\n>>> print(dumps(['a', 'b']))\n(\"a\" \"b\")\n\n\nYou can install `sexpdata` from PyPI_::\n\n  pip install sexpdata\n\n\nLinks:\n\n* `Documentation (at Read the Docs) <http://sexpdata.readthedocs.org/>`_\n* `Repository (at GitHub) <https://github.com/jd-boyd/sexpdata>`_\n* `Issue tracker (at GitHub) <https://github.com/jd-boyd/sexpdata/issues>`_\n* `PyPI <http://pypi.python.org/pypi/sexpdata>`_\n* `Travis CI <https://travis-ci.org/#!/jd-boyd/sexpdata>`_\n\n\nMaking a release\n----------------\n\n1. `python -m build`\n1. `twine check dist/*`\n1. `git tag v1.0.x`\n1. `twine upload dist/*`\n\n\nLicense\n-------\n\n`sexpdata` is licensed under the terms of the BSD 2-Clause License.\nSee the source code for more information.\n",
    "bugtrack_url": null,
    "license": "BSD 2-Clause License  Copyright (c) 2019, Joshua Boyd 'jd-boyd' All rights reserved.  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ",
    "summary": "S-expression parser for Python",
    "version": "1.0.2",
    "project_urls": {
        "Bug Tracker": "https://github.com/jd-boyd/sexpdata/issues",
        "Homepage": "https://github.com/jd-boyd/sexpdata"
    },
    "split_keywords": [
        "s-expression",
        "lisp",
        "parser"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1f3ec9f8cc20dc1f34c926f0ec3f43b73fa2da59cf08e432fb8ae5b666b2027",
                "md5": "1da0397d19fb0ec53b4efc22b848c7f4",
                "sha256": "b39c918f055a85c5c35c1d4f7930aabb176bd29016e5ba5692e7e849914b2a1a"
            },
            "downloads": -1,
            "filename": "sexpdata-1.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1da0397d19fb0ec53b4efc22b848c7f4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 10337,
            "upload_time": "2024-01-09T07:09:57",
            "upload_time_iso_8601": "2024-01-09T07:09:57.185567Z",
            "url": "https://files.pythonhosted.org/packages/f1/f3/ec9f8cc20dc1f34c926f0ec3f43b73fa2da59cf08e432fb8ae5b666b2027/sexpdata-1.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a77f369a478863a39351be75e0a12602bc29196b31f87bf3432bed2be6379f8e",
                "md5": "4c68895d124ca657d8e852564a8f6642",
                "sha256": "92b67b0361f6766f8f9e44b9519cf3fbcfafa755db85bbf893c3e1cf4ddac109"
            },
            "downloads": -1,
            "filename": "sexpdata-1.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "4c68895d124ca657d8e852564a8f6642",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 8906,
            "upload_time": "2024-01-09T07:09:59",
            "upload_time_iso_8601": "2024-01-09T07:09:59.096029Z",
            "url": "https://files.pythonhosted.org/packages/a7/7f/369a478863a39351be75e0a12602bc29196b31f87bf3432bed2be6379f8e/sexpdata-1.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-09 07:09:59",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jd-boyd",
    "github_project": "sexpdata",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "sexpdata"
}
        
Elapsed time: 0.16544s