Metadata-Version: 2.1
Name: py_assimilator
Version: 0.2.3
Summary: The best python patterns for your projects
Home-page: https://pypi.python.org/pypi/py_assimilator/
Author: Andrey Ivanov
Author-email: python.on.papyrus@gmail.com
License: LICENSE.md
Project-URL: Documentation, https://knucklesuganda.github.io/py_assimilator/
Project-URL: Github, https://github.com/knucklesuganda/py_assimilator
Project-URL: Youtube RU, https://www.youtube.com/channel/UCSNpJHMOU7FqjD4Ttux0uuw
Project-URL: Youtube ENG, https://www.youtube.com/channel/UCeC9LNDwRP9OfjyOFHaSikA
Platform: UNKNOWN
Requires: pydantic
Requires: makefun
Description-Content-Type: text/markdown
Provides-Extra: database
Provides-Extra: kafka
Provides-Extra: redis
License-File: LICENSE.md

# Assimilator - the best Python patterns for the best projects

## Install now
* `pip install py_assimilator`

## Source
* [Github](https://github.com/knucklesuganda/py_assimilator)
* [PyPI](https://pypi.org/project/py-assimilator/)
* [Documentation](https://knucklesuganda.github.io/py_assimilator/)
* [Github](https://github.com/knucklesuganda/py_assimilator)
* [Author's YouTube RU](https://www.youtube.com/channel/UCSNpJHMOU7FqjD4Ttux0uuw)
* [Author's YouTube ENG](https://www.youtube.com/channel/UCeC9LNDwRP9OfjyOFHaSikA)

## About patterns in coding
They are useful, but only to some extent. Most of them are not suitable for 
real life applications. DDD(Domain-driven design) is one of the most popular ways of development
today, but nobody explains how to write most of DDD patterns in Python. Even if they do, life gives you another
issue that cannot be solved with a simple algorithm. That is why [Andrey](https://www.youtube.com/channel/UCSNpJHMOU7FqjD4Ttux0uuw) created
a library for the patterns that he uses in his projects daily.

## Types of patterns
These are different use cases for the patterns implemented.

- Database - patterns for database/data layer interactions
- Events - projects with events or event-driven architecture

## Available providers
Providers are different patterns for external modules like SQLAlchemy or 
FastAPI.

- Alchemy(Database, Events) - patterns for [SQLAlchemy](https://docs.sqlalchemy.org/en/20/) for both database and events
- Kafka(Events) - patterns in [Kafka](https://kafka.apache.org/) related to events
- Internal(Database, Events) - internal is the type of provider that saves everything in memory(dict, list and all the tools within your app)
- Redis(Database, Events) - redis allows us to work with [Redis](https://redis.io/) memory database


