Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/rfc8785/__init__.py: 100%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""
2The `rfc8785` APIs.
4See [RFC 8785](https://datatracker.ietf.org/doc/html/rfc8785) for a full
5definition of the JSON Canonicalization Scheme.
7## Quick start
9```python
10import rfc8785
12rfc8785.dumps({"anything that can be json serialized": "here"})
13```
14"""
16__version__ = "0.1.4"
18from ._impl import CanonicalizationError, FloatDomainError, IntegerDomainError, dump, dumps
20__all__ = [
21 "CanonicalizationError",
22 "IntegerDomainError",
23 "FloatDomainError",
24 "dump",
25 "dumps",
26]