Let's say I am building an event-driven architecture, with Python microservices. I have a stream package
handling all interactions with the streaming platform. It is supposed to be used internally only, in the company.
stream
__init__.py
produce.py
process.py
security.py
What are my options for sharing this package between all my Python microservices?
Should I publish my stream package
so my projects can install it?
Is there some kind of Gradle for python including the Multi project feature?