-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add more examples #7
Comments
Are there any obvious examples you might be interested in seeing built? I use RabbitMQ on the side for a project, and have used this library heavily for services that listen on exchanges for work to come in. I could easily adapt some of that code into usage examples, if you are interested. I've had to get creative when pulling down messages from multiple queues due to the single-threaded model of the library, but thus far things have worked out. When I was using this library for the first time, I can think of a few things I would have loved to see documented, preferably with examples:
|
Sure! Feel free to contribute whatever you think is best. Any help would be much appreciated! I have to rework the internals of this library to allow for more efficient multithreading. The best way to go about it is via Go-style channels and a Go-style |
I'm in the process of porting over the RabbitMQ tutorial examples, and the first 5 were relatively straightforward since amqpy's API is fairly similar to pika's. However, I ran into a problem porting their RPC demonstration. It seems to rely on message recipients being able to see fields like From what I can see in amqpy's It seems to me like this might be something to provide under Thoughts? |
I've used |
Add more examples in examples directory and update Sphinx docs with better examples.
The text was updated successfully, but these errors were encountered: