Christian Barra
Christian Barra
Thanks :)
Thanks, would it better to use a single db file or one for each topic? Keys will monotonically increase for each topic.
I'll be happy to share the first implementation here, a feedback would be more then welcome :)
@wintamute sorry for the delay, I will try to give you a feedback during the next week!
I usually works with things where I prefer to have access to the raw response and I don't use `list` that much. But I agree that having some high level...
I guess the best way is to start with a PR!
Also something similar to [aioredis](https://github.com/aio-libs/aioredis/blob/master/examples/pubsub.py) without using async generator would be fine: ```python async def reader(ch): while (await ch.wait_message()): msg = await ch.get_json() print("Got Message:", msg) ``` Mostly because with...
Hi @RettBehrens, thanks for your answer. how would you implement something like this? ```python # Get invoices for different customers (different tenants) api_client = ApiClient( Configuration( debug=app.config["DEBUG"], oauth2_token=OAuth2Token( client_id=app.config["CLIENT_ID"], client_secret=app.config["CLIENT_SECRET"]...
Thanks @joe-niland!
Hello, SwarmSpawner is not supported anymore (basically no time to work on it). I started a new project: [cassiny.io](https://www.cassiny.io) Here a small presentation I gave during [PyData Berlin](https://drive.google.com/open?id=1fwcRrVRRZu8gNGEiXuiI9q-whxvInVvl8dVyEtOruhA) about [cassiny](https://github.com/cassinyio/cassinyio)....