Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/serde/__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

11 statements  

1""" 

2Serde is a lightweight, general-purpose framework for defining, serializing, 

3deserializing, and validating data structures in Python. 

4""" 

5 

6from serde.exceptions import ValidationError 

7from serde.model import Model 

8 

9 

10__all__ = ['Model', 'ValidationError', 'fields', 'tags', 'validators'] 

11__title__ = 'serde' 

12__version__ = '0.9.0' 

13__url__ = 'https://github.com/rossmacarthur/serde' 

14__author__ = 'Ross MacArthur' 

15__author_email__ = 'ross@macarthur.io' 

16__license__ = 'MIT/Apache-2.0' 

17__description__ = 'Define, serialize, deserialize, and validate Python data structures.'