Metadata-Version: 2.1
Name: d42
Version: 1.5.0
Summary: One package for district42 ecosystem
Home-page: https://github.com/nikitanovosibirsk/d42
License: Apache-2.0
Author: Nikita Tsvetkov
Author-email: nikitanovosibirsk@yandex.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Typing :: Typed
Requires-Dist: blahblah (>=1.5,<1.6)
Requires-Dist: district42 (>=1.5,<1.6)
Requires-Dist: revolt (>=1.5,<1.6)
Requires-Dist: valera (>=1.5,<1.6)
Project-URL: Repository, https://github.com/nikitanovosibirsk/d42
Description-Content-Type: text/markdown

# d42

[![PyPI](https://img.shields.io/pypi/v/d42.svg?style=flat-square)](https://pypi.python.org/pypi/d42/)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/d42?style=flat-square)](https://pypi.python.org/pypi/d42/)
[![Python Version](https://img.shields.io/pypi/pyversions/d42.svg?style=flat-square)](https://pypi.python.org/pypi/d42/)

One package for [district42 ecosystem](https://github.com/topics/district42)

d42 = [district42](https://pypi.org/project/district42/) + [blahblah](https://pypi.org/project/blahblah/) + [valera](https://pypi.org/project/valera/) + [revolt](https://pypi.org/project/revolt/)

## Installation

```sh
pip3 install d42
```

## Usage

```python
from d42 import schema, fake, validate_or_fail

sch = schema.str("banana")

assert validate_or_fail(sch, fake(sch))
```

