Metadata-Version: 2.1
Name: marshmallow-objects
Version: 2.1.0
Summary: Marshmallow Objects and Models
Home-page: https://github.com/SVilgelm/marshmallow-objects
Author: Sergey Vilgelm
Author-email: sergey@vilgelm.info
License: MIT License
Keywords: marshmallow objects models yaml json ini config parser
Platform: UNKNOWN
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
Requires-Dist: marshmallow (>=3.0.0)

# marshmallow-objects

[![Test](https://github.com/SVilgelm/marshmallow-objects/workflows/Test%20Master%20Branch/badge.svg)](https://github.com/SVilgelm/marshmallow-objects/actions?query=workflow%3A%22Test+Master+Branch%22)
[![codecov](https://codecov.io/gh/SVilgelm/marshmallow-objects/branch/master/graph/badge.svg)](https://codecov.io/gh/SVilgelm/marshmallow-objects)
[![PyPI version](https://badge.fury.io/py/marshmallow-objects.svg)](https://badge.fury.io/py/marshmallow-objects)

## Marshmallow Objects and Models

Serializing/Deserializing Python objects using [Marshmallow](https://github.com/marshmallow-code/marshmallow) library.

```python
import marshmallow_objects as marshmallow


class Artist(marshmallow.Model):
    name = marshmallow.fields.Str()


class Album(marshmallow.Model):
    title = marshmallow.fields.Str()
    release_date = marshmallow.fields.Date()
    artist = marshmallow.NestedModel(Artist)


bowie_raw = dict(name='David Bowie')
album_raw = dict(artist=bowie_raw, title='Hunky Dory',
                 release_date='1971-12-17')

album = Album(**album_raw)
print(album.title)
print(album.release_date)
print(album.artist.name)

# Hunky Dory
# 1971-12-17
# David Bowie
```

## Get It Now

```bash
$ pip install -U marshmallow-objects
```

## Project Links

* [Marshmallow](https://github.com/marshmallow-code/marshmallow)
* [PyPi](https://pypi.python.org/pypi/marshmallow-objects)
* [Cookbook](https://github.com/SVilgelm/marshmallow-objects/wiki)

## License

MIT licensed. See the bundled [LICENSE](LICENSE) file for more details.



