New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

sexpdata

Package Overview
Dependencies
Maintainers
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sexpdata

S-expression parser for Python

  • 1.0.2
  • PyPI
  • Socket score

Maintainers
3

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
  2. twine check dist/*
  3. git tag v1.0.x
  4. twine upload dist/*

License

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

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc