aiopyramid icon indicating copy to clipboard operation
aiopyramid copied to clipboard

Run pyramid using asyncio.

Results 9 aiopyramid issues
Sort by recently updated
recently updated
newest added

Bumps [aiohttp](https://github.com/aio-libs/aiohttp) from 3.7.4 to 3.8.5. Release notes Sourced from aiohttp's releases. 3.8.5 Security bugfixes Upgraded the vendored copy of llhttp_ to v8.1.1 -- by :user:webknjaz and :user:Dreamsorcerer. Thanks to...

dependencies

it seems like it's not picking up the settings in the development.ini but I dont know why that would be. ``` bash tom@tom-ThinkPad-P1:~/projects/tstaiopyramid$ pipenv --python 3.7 Creating a virtualenv for...

the `@asyncio.coroutine` decorator appears to be removed from python 3.11, and is replaced with the `async def blah ()` syntax also "yield from" is replaced by "await" I'm getting this...

First thanks for the library, really helpful. I'm struggling since 2 days to make aiopyramid work with python 3.7. I've seen that : :heavy_check_mark: greenlet is compatible with python 3.9...

The ability to use coroutine functions for event subscribers would be useful, enabling subscribers to call other async functions or other coroutines.

Hello! It seems like the docs only reference `yield from`, not the modern `await` statement, which probably works (`async def` functions return coroutines which are awaitable), but tests and docs...

Hi, From the examples of the documentation, i couldn't find a way to use pyramid_jwt to authenticate a websocket view. Then i thought i could send the token as a...

I've done some work to ensure blocking work won't happen in the main thread. You might consider adding this (or something similar) to aiopyramid or the docs: ``` import os...

`Websockets` doesn't seem to keep the connection alive as claimed in the docs (https://github.com/aaugustin/websockets/issues/110). I'd suggest changing the **call** method of your WebsocketConnectionView to look like: ``` async def __call__(self,...