Fastest way to turn your robot workflows into event driven service.
Project description
Reactive Robot (⚡ 🤖)
Mission
This project aims to turn Robot Framework projects into event-driven services using popular message brokers like RabbitMQ, Kafka or MQTT.
Installation
You can install reactive-robot into projects using pip;
pip install reactive-robot
Usage
Create a definition file called reactive-robot.yml
then paste following configuration;
service_name: Example Robot Service
service_version: 1.0.0
connector:
driver: reactive_robot.connectors.mqtt.MQTTConnector
connection_url: mqtt://localhost:1883
bindings:
- name: Example Task
topic: robot-queue
robot:
file: your-robots/examples.robot
args: null
You're all set! Now all you have to do is start the service;
python -m reactive_robot serve
You should see the following output;
$ python -m reactive_robot serve
2021-11-27 18:22:58,517 - [INFO] - reactive_robot.serve::serve::40 - Using Robot Framework v4.1.2 (Python 3.10.0 on darwin)
2021-11-27 18:22:58,518 - [INFO] - reactive_robot.serve::serve::47 - Event loop started. Waiting for events.
Finally publish a message to see your robots are running.
python tests/mqtt/publish.py localhost 1883
Examples
In this section you can find example implementations with different message brokers;
You need docker
and docker-compose
in order to execute example projects.
Robot Service with Kafka Broker
Navigate to the examples/kafka
cd examples/kafka
Then start containers with below;
docker-compose up
Finally, trigger an event in basic topic to see your robots are running;
docker-compose exec robot-service python /opt/service/publish.py basic
Robot Service with MQTT Broker
Navigate to the examples/mqtt
cd examples/mqtt
Then start containers with below;
docker-compose up
Finally, trigger an event to see your robots are running;
docker-compose exec mqtt-broker /opt/hivemq-4.7.2/tools/mqtt-cli/bin/mqtt pub --topic basic --message TEST_VAR:321
Recipes
In the examples/ directory you can find example projects which implements all recipes below;
Dockerize your service
Here you can find an example Dockerfile to convert your Robot Framework projects into dockerized event-driven service
FROM robotframework/rfdocker
WORKDIR /opt/service
COPY . /opt/service
RUN pip install -r requirements.txt # Your project dependencies.
# reactive-robot setup
COPY reactive-robot.yml .
RUN pip install reactive-robot
CMD ["python", "-m", "reactive-robot", "serve"]
Then, we can build the image with following;
docker build -t robot-service:1.0.0 .
Finally, run your service;
docker run -it robot-service:1.0.0
License
Distributed under the Apache License 2.
See LICENSE
for more information.
Contributing
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions are appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/some-feature
) - Commit your Changes (
git commit -m 'some feature added'
) - Push to the Branch (
git push origin feature/some-feature
) - Open a Pull Request
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
File details
Details for the file reactive-robot-0.1.0a5.tar.gz
.
File metadata
- Download URL: reactive-robot-0.1.0a5.tar.gz
- Upload date:
- Size: 15.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.7.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 034c153c10f85344ac2186f769d0a6c861e6c6a40dd395475537440782d52582 |
|
MD5 | d00391bb60033e5d9f0aafc5f9495e6a |
|
BLAKE2b-256 | 8b8a895abbf1603e96fadddc43ff52dcce6ee2a23e6e894965f5fe4fd58e3c6e |