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

4 statements  

1""" 

2The `rfc8785` APIs. 

3 

4See [RFC 8785](https://datatracker.ietf.org/doc/html/rfc8785) for a full 

5definition of the JSON Canonicalization Scheme. 

6 

7## Quick start 

8 

9```python 

10import rfc8785 

11 

12rfc8785.dumps({"anything that can be json serialized": "here"}) 

13``` 

14""" 

15 

16__version__ = "0.1.4" 

17 

18from ._impl import CanonicalizationError, FloatDomainError, IntegerDomainError, dump, dumps 

19 

20__all__ = [ 

21 "CanonicalizationError", 

22 "IntegerDomainError", 

23 "FloatDomainError", 

24 "dump", 

25 "dumps", 

26]