Pydiator
Project description
Installation
https://pypi.org/project/pydiator-core/
add your requirements.txt pydiator-core or run the pip install pydiator-core command
Examples
Directly : https://github.com/ozgurkara/pydiator-core/blob/master/examples/main.py
Fastapi : https://github.com/ozgurkara/fastapi-pydiator
What is the pydiator?
Pydiator is an in-app communication method.
It provides that developing the code as an aspect. Also, it supports clean architecture infrastructure
It is using design patterns such as chain of responsibility, mediator, singleton.
Pydiator provides which advantages to developers and project?
- Testable
- Use case support
- Aspect programming (Authorization, Validation, Cache, Logging, Tracer etc.) support
- Clean architecture
- Expandable architecture via pipeline
- Independent framework
- SOLID principles
- Has publisher subscriber infrastructure
How it works?
Pydiator knows 4 object types. These are;
1- Request object
- Is used for calling the use case.
- It should be inherited from BaseRequest
class GetSampleByIdRequest(BaseRequest):
def __init__(self, id: int):
self.id = id
2- Response object
- Is used for returning from use case
- It should be inherited from BaseResponse
class GetSampleByIdResponse(BaseResponse):
def __init__(self, id: int, title: str):
self.id = id
self.title = title
3- Use Case
- Includes logic codes
- It should be inherited from BaseHandler
- It takes one parameter to handle. The parameter should be inherited BaseRequest
class GetSampleByIdUseCase(BaseHandler):
async def handle(self, req: GetSampleByIdRequest):
# related codes are here such as business
return GetSampleByIdResponse(id=req.id, title="hello pydiatr")
What is the relation between these 3 object types?
Every use case object only knows a request object
Every request object is only used by one use case object
How is the use case run?
Should be had a particular map between the request object and the use case object.
Mapping example;
def set_up_pydiator():
container = MediatrContainer()
container.register_request(GetSampleByIdRequest, GetSampleByIdUseCase())
#container.register_request(xRequest, xUseCase())
pydiator.ready(container=container)
Calling example;
await pydiator.send(GetByIdRequest(id=1))
or
loop = asyncio.new_event_loop()
response: GetByIdResponse = loop.run_until_complete(pydiator.send(GetByIdRequest(id=1)))
loop.close()
print(response.to_json())
4- Pipeline
The purpose of the pipeline is to manage the code as an aspect. For instance, you want to write a log for the request and the response of every use case. You can do it via a pipeline easily. You can see the sample log pipeline at this link.
You can create a lot of pipelines such as cache pipeline, validation pipeline, tracer pipeline, authorization pipeline etc.
Also, you can create the pipeline much as you want but you should not forget that every use case will be used in this pipeline.
You can add the pipeline to pipelines such as;
def set_up_pydiator():
container = MediatrContainer()
container.register_pipeline(LogPipeline())
#container.register_pipeline(xPipeline())
pydiator.ready(container=container)
How can you write custom pipeline?
- Every pipeline should be inherited BasePipeline
- Sample pipeline
class SamplePipeline(BasePipeline):
def __init__(self):
pass
async def handle(self, req: BaseRequest) -> object:
# before executed pipeline and uce case
response = await self.next().handle(req)
# after executed next pipeline and use case
return response
How to use the publisher subscriber feature
What is the observer feature?
This feature runs as pub-sub design pattern.
What is the pub-sub pattern?
publish-subscribe is a messaging pattern where senders of messages, called publishers, do not program the messages to be sent directly to specific receivers, called subscribers, but instead, categorize published messages into classes without knowledge of which subscribers if any, there may be. Similarly, subscribers express interest in one or more classes and only receive messages that are of interest, without knowledge of which publishers, if any, there are.
How to use this pattern with the pydiator?
You can see the details that via this link https://github.com/ozgurkara/pydiator-core/blob/master/examples/pub_sub.py
def set_up_pydiator():
container = MediatrContainer()
container.register_notification(SamplePublisherRequest, [Sample1Subscriber(), Sample2Subscriber(),
Sample3Subscriber()])
pydiator.ready(container=container)
if __name__ == "__main__":
set_up_pydiator()
loop = asyncio.new_event_loop()
loop.run_until_complete(pydiator.publish(SamplePublisherRequest(id=1)))
loop.close()
How to run the Unit Tests
install tests/requirements.txt
pytest tests/
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pydiator-core-1.0.5.tar.gz
.
File metadata
- Download URL: pydiator-core-1.0.5.tar.gz
- Upload date:
- Size: 12.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 814dd11c0951afa7cbf275c24cd560526afee12da6de2ac5da6c45938a6bc296 |
|
MD5 | cdac5f27dea4c6def9cd7664d20c140b |
|
BLAKE2b-256 | e489ed208188f94b3a1d3069e46b1a225e9917e7bb8d20c61ad621ffa482c651 |
File details
Details for the file pydiator_core-1.0.5-py3-none-any.whl
.
File metadata
- Download URL: pydiator_core-1.0.5-py3-none-any.whl
- Upload date:
- Size: 15.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c786216cc34d45adf0a2c57cfdbec1e6f69fd1ccb2e12813f7d7d8498b3ea5e |
|
MD5 | 83a3e33d301ef48f5c9fc63ae0df11f6 |
|
BLAKE2b-256 | 80c81188ac44161db8c751c0e362558a109bb5b912bb742408dbbb4b8aa08d44 |