This repository has been archived by the owner on Jan 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #124 from Clariteia/0.0.1
0.0.1
- Loading branch information
Showing
135 changed files
with
3,996 additions
and
2,178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -102,4 +102,7 @@ ENV/ | |
.mypy_cache/ | ||
|
||
# IDE settings | ||
.vscode/ | ||
.vscode/ | ||
|
||
# Intellij IDEa / PyCharm / etc. | ||
.idea |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
enabled: true | ||
exclude: | ||
- "**/*.md" | ||
- ".idea/**/*" | ||
- "docs/**/*" | ||
- "**/*.in" | ||
- "Makefile" | ||
- ".github/workflows/**/*" | ||
restylers: | ||
- name: black | ||
image: restyled/restyler-black:v19.10b0 | ||
command: | ||
- black | ||
arguments: ["--line-length", "120"] | ||
include: | ||
- "**/*.py" | ||
interpreters: | ||
- python | ||
- name: isort | ||
image: restyled/restyler-isort:v4.3.21 | ||
command: | ||
- isort | ||
arguments: [] | ||
include: | ||
- "**/*.py" | ||
interpreters: | ||
- python |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
History | ||
======= | ||
|
||
0.0.1 (2021-05-12) | ||
------------------ | ||
|
||
* Added Event Handler | ||
* Added Command Handler | ||
* Added Event Recurring Service | ||
* Added Command Recurring Service | ||
* Added Event Broker with Recurrent Service | ||
* Added Command Broker with Recurrent Service | ||
* Added REST Service with Health handler | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Minos Microservice Networks | ||
=========================== | ||
|
||
[![codecov](https://codecov.io/gh/Clariteia/minos_microservice_networks/branch/main/graph/badge.svg)](https://codecov.io/gh/Clariteia/minos_microservice_networks) | ||
|
||
![Tests](https://github.com/Clariteia/minos_microservice_networks/actions/workflows/python-tests.yml/badge.svg) | ||
|
||
Python Package with the common network classes and utlities used in Minos Microservice | ||
|
||
|
||
Credits | ||
------- | ||
|
||
This package was created with ![Cookiecutter](https://github.com/audreyr/cookiecutter) | ||
and the ![Minos Package](https://github.com/Clariteia/minos-pypackage) project template. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,43 @@ | ||
__version__ = '0.0.1.1-alpha' | ||
""" | ||
Copyright (C) 2021 Clariteia SL | ||
This file is part of minos framework. | ||
Minos framework can not be copied and/or distributed without the express permission of Clariteia SL. | ||
""" | ||
__version__ = "0.0.1" | ||
|
||
from .broker import ( | ||
MinosCommandBroker, | ||
MinosEventBroker, | ||
MinosQueueDispatcher, | ||
MinosQueueService, | ||
) | ||
from .exceptions import ( | ||
MinosNetworkException, | ||
MinosPreviousVersionSnapshotException, | ||
MinosSnapshotException, | ||
) | ||
from .handler import ( | ||
MinosCommandHandlerDispatcher, | ||
MinosCommandHandlerServer, | ||
MinosCommandPeriodicService, | ||
MinosCommandReplyHandlerDispatcher, | ||
MinosCommandReplyHandlerServer, | ||
MinosCommandReplyPeriodicService, | ||
MinosCommandReplyServerService, | ||
MinosCommandServerService, | ||
MinosEventHandlerDispatcher, | ||
MinosEventHandlerServer, | ||
MinosEventPeriodicService, | ||
MinosEventServerService, | ||
) | ||
from .rest_interface import ( | ||
REST, | ||
RestInterfaceHandler, | ||
) | ||
from .snapshots import ( | ||
MinosSnapshotDispatcher, | ||
MinosSnapshotEntry, | ||
MinosSnapshotService, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
""" | ||
Copyright (C) 2021 Clariteia SL | ||
This file is part of minos framework. | ||
Minos framework can not be copied and/or distributed without the express permission of Clariteia SL. | ||
""" | ||
from .commands import ( | ||
MinosCommandBroker, | ||
) | ||
from .dispatchers import ( | ||
MinosQueueDispatcher, | ||
) | ||
from .events import ( | ||
MinosEventBroker, | ||
) | ||
from .services import ( | ||
MinosQueueService, | ||
) |
Oops, something went wrong.