akayunov

Results 3 issues of akayunov

Hi guys, We would like to use graphql internally in our project without share graphql interface with any client, to gather data from different apis for our internal tasks. So...

✨ enhancement

pkg_resources use a lot of memory and after introducing importlib.metadata in 3.8 looks obsolete. So let's change way to get package version and get rid of pkg_resources import.

suggest to change interface of consuming messages from registering call_back `on_message` to iterating by some message generator: something like: ``` await mq.connect(conf) await mq.create_channel() await mq.declare_queue(queue_name) await self.mq.queue_bind(queue_name, '#') **async...