Metadata-Version: 2.4
Name: validat
Version: 0.0.7
Summary: Library for data validation
Author-email: Aliaksei Yafremau <447654972g@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Validat

[![pypi](https://img.shields.io/pypi/v/validat?color=blue)](https://pypi.org/project/validat/)
[![versions](https://img.shields.io/pypi/pyversions/validat)](https://pypi.org/project/validat/)
[![license](https://img.shields.io/github/license/AliakseiYafremau/validat)](https://github.com/AliakseiYafremau/validat/blob/main/LICENSE)

Validat is a Python library for data validation. It provides a simple and flexible way to validate data structures, ensuring that your data meets the required criteria.

## Features

- Easy to use and integrate
- Supports various data types and structures
- Customizable validation rules
- Detailed error messages

## Installation

You can install Validat using pip:

```bash
pip install validat
```

## Usage

Here's a basic example of how to use Validat:

```python
import validat

correct_email = "username@example.com"
is_valid = validat.validate_email(correct_email)
print(is_valid) # True

wrong_email = "username@@example.com"
is_valid = validat.validate_email(wrong_email)
print(is_valid) # False
```

## Documentation

For more detailed information, please refer to the [official documentation](https://aliakseiyafremau.github.io/validat/).
