Metadata-Version: 2.1
Name: kirzner-serializer
Version: 0.0.2
Summary: Module for json and xml serialization
Author: Nastya Kirzner
Author-email: kirznernasta@gmail.com
License: MIT
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.10
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: regex

# Welcome to Kirzner's Serializer!

## This module supports two formats: *json* and *xml*

### Each serializer contains:

* `dump(obj, filepath)` - serialize `obj` into the file with provided `filepath`

* `dumps(obj)` - serialize `obj` and returns string result

* `load(obj, filepath)` - return the result of deserialization content from the file with provided `filepath`

* `loads(obj, s)` - return the result of deserialization content from the provided string `s`
