diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..e69de29 diff --git a/404.html b/404.html new file mode 100644 index 0000000..2814b76 --- /dev/null +++ b/404.html @@ -0,0 +1,320 @@ + + + +
+ + + + + + + + + + + + + ++ + + +
+pip install upy-rabbitmq
+
Add an environment variation called RABBITMQ_URL in your project's .env file.
+RABBITMQ_URL=amqp://user:password@remote.server.com:port//vhost
+
from upy_rabbitmq.worker import UpyMQWorker
+
+worker = UpyMQWorker()
+worker.start_queue(
+ key="key",
+ callback=callback
+)
+
from upy_rabbitmq.client import UpyMQClient
+
+client = UpyMQClient()
+client.new_task(
+ key="key",
+ message="Hello"
+)
+
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
+git checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
)Distributed under the MIT License. See LICENSE
for more information.
pip install upy-rabbitmq\n
"},{"location":"#config","title":"Config","text":"Add an environment variation called RABBITMQ_URL in your project's .env file.
RABBITMQ_URL=amqp://user:password@remote.server.com:port//vhost\n
"},{"location":"#start-queue","title":"Start Queue","text":"from upy_rabbitmq.worker import UpyMQWorker\n\nworker = UpyMQWorker()\nworker.start_queue(\n key=\"key\",\n callback=callback\n)\n
"},{"location":"#new-task","title":"New Task","text":"from upy_rabbitmq.client import UpyMQClient\n\nclient = UpyMQClient()\nclient.new_task(\n key=\"key\",\n message=\"Hello\"\n)\n
"},{"location":"#contributing","title":"Contributing","text":"Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
git checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
)Distributed under the MIT License. See LICENSE
for more information.