Metadata-Version: 2.4
Name: anymarkup-core
Version: 0.8.1
Summary: Core library for anymarkup
Home-page: https://github.com/bkabrda/anymarkup-core
Author: Slavek Kabrda
Author-email: slavek.kabrda@gmail.com
License: BSD
Keywords: xml,yaml,toml,json,json5,ini
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: summary

anymarkup-core
==============

.. image:: https://travis-ci.org/bkabrda/anymarkup-core.svg?branch=master
   :target: https://travis-ci.org/bkabrda/anymarkup-core
   :alt: Build Status

.. image:: https://landscape.io/github/bkabrda/anymarkup-core/master/landscape.svg?style=flat
   :target: https://landscape.io/github/bkabrda/anymarkup-core/master
   :alt: Code Health

.. image:: https://coveralls.io/repos/bkabrda/anymarkup-core/badge.svg?branch=master
   :target: https://coveralls.io/r/bkabrda/anymarkup-core?branch=master
   :alt: Coverage

This is the core library that implements functionality of https://github.com/bkabrda/anymarkup.
You can install this if you only want to use a subset of anymarkup parsers. For example, you
can do this::

  $ pip install anymarkup-core PyYAML
  $ python -c "import anymarkup_core; print(anymarkup_core.parse('foo: bar'))"

... and you don't need `xmltodict` installed, for example. You can use anymarkup-core
in the same way you use anymarkup, except you have to import from `anymarkup_core`, obviously.
