Channel Cat
Channel Cat
Added in the ability to hook all of a major type, and added tests/docs. From the Readme: To target all types use `Any`. Targeting collections without their sub-types will target...
```python from japronto import Application async def test(): return async def hello1(request): return request.Response(text='Hello world!') async def hello2(request): await test() return request.Response(text='Hello world!') async def hello3(request): await test() await test()...
Using japronto 0.1, this will produce and error when running tests utilizing pipelining: ```python from japronto import Application async def test(): return async def hello(request): await test() return request.Response(text='Hello world!')...
I really like this project and recently tried implementing Django-style migrations. However, I ran into a few issues needing to be dealt with and monkey-patched to make work. ### Goal:...