panini icon indicating copy to clipboard operation
panini copied to clipboard

Python microframework for NATS messaging

Results 37 panini issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/48014331/125905978-fb2837b5-9419-4523-887f-c1e8754a84d4.png)

https://github.com/lwinterface/panini/blob/develop/panini/app.py#L212 - change to loop.run_until_complete here

enhancement

When I mistakenly use function instead coroutine, I got salient error ``` @app.listen("some.publish.subject") async def receive_messages(msg): log.warning(f"got subject {msg.subject}") log.warning(f"got message {msg.data}") @app.listen("some.request.subject") async def receive_messages(msg): return {'success': True, "data":"some...

bug

When returning result of request - client waits for a message, but it can be sent to another client or to another app, with no need to wait for it

bug

make able to create App() from AppFactory class in order to have different ways to create app (from config file, json, env, etc) Also, there we can add creation of...

enhancement
discussion required

Implement as built-in middleware

new feature