├── .gitignore ├── Readme.md ├── client_example.py ├── moleculer ├── __init__.py ├── client.py ├── consumer.py ├── node.py ├── service.py └── topics.py ├── node_example.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToGoBananas/moleculer-python/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToGoBananas/moleculer-python/HEAD/Readme.md -------------------------------------------------------------------------------- /client_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToGoBananas/moleculer-python/HEAD/client_example.py -------------------------------------------------------------------------------- /moleculer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moleculer/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToGoBananas/moleculer-python/HEAD/moleculer/client.py -------------------------------------------------------------------------------- /moleculer/consumer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToGoBananas/moleculer-python/HEAD/moleculer/consumer.py -------------------------------------------------------------------------------- /moleculer/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToGoBananas/moleculer-python/HEAD/moleculer/node.py -------------------------------------------------------------------------------- /moleculer/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToGoBananas/moleculer-python/HEAD/moleculer/service.py -------------------------------------------------------------------------------- /moleculer/topics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToGoBananas/moleculer-python/HEAD/moleculer/topics.py -------------------------------------------------------------------------------- /node_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToGoBananas/moleculer-python/HEAD/node_example.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | psutil 2 | pika -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToGoBananas/moleculer-python/HEAD/setup.py --------------------------------------------------------------------------------