-
Updated
Nov 26, 2021 - Python
asyncio
Here are 2,442 public repositories matching this topic...
-
Updated
Nov 26, 2021 - Python
TraceConfig.on_response_chunk_received doesn't trace if the response body is read from ClientResponse.content
This behavior isn't obvious when looking at Tracing Reference, [Streaming Response Content](https://docs.aiohttp.org/e
-
Updated
Nov 3, 2021 - Cython
After reading through the docs section on NETRC support, we happen to support passing the NETRC file location via a NETRC environment variable. But this is not documented in Environment Variables, so let's add it there.
-
Updated
Oct 26, 2021 - Python
-
Updated
Nov 25, 2021 - Python
-
Updated
Nov 16, 2021 - Python
Currently, https://slack.dev/python-slack-sdk/socket-mode/index.html has only Events API example. We add interactivity patterns (e.g., shortcuts, modal submission, button clicks, etc.) in the page.
@~tjstum Thanks for your prompt reply here!
I might suggest adding something to the docs of SocketModeRequest (and the example usages) mentioning that the WebhookClient/AsyncWebhookClient ca
-
Updated
Nov 4, 2021
Great stuff! I'd love to use this in magic-wormhole.. I only need the DataChannel, though. Any idea how hard it'd be to define a 'feature' for the codecs, so pip install aiortc[video] gets you the dependencies on the codecs, but pip install aiortc[datachannel] does not?
-
Updated
Nov 14, 2021 - Python
-
Updated
Nov 16, 2021 - Python
Example of usage:
users = await User.filter(first_name__ilike="c%r")
I know this can be done with startswith and endswith, but there are cases where using the LIKE operator is better:
users = await User.filter(first_name__ilike="j_r%")
This would be used to match Jeremy, Jorge, Jordan...
-
Updated
Oct 10, 2021 - Python
On the filtering events page, on writing bound filters, the sample code section, wrong import is inserted:
from aiogram.filters import BaseFilter
it has to be :
from aiogram.dispatcher.filters import BaseFilter
-
Updated
Oct 12, 2021 - C++
-
Updated
Nov 23, 2021 - Python
-
Updated
Dec 27, 2019 - Python
-
Updated
Nov 23, 2021 - Python
-
Updated
Nov 4, 2021 - Python
-
Updated
Nov 8, 2021 - Python
Hi!
How can I set response headers if the context object does not contain the response key? I need to set a httpOnly cookie when a user authenticates in the system. For db injection I used Extension.
def authenticate_user(username: str, password: str, info: Info) -> AuthenticateResponse:
db = info.context['db']
...
info.context["response"].set_cookie(key="token", value-
Updated
Oct 18, 2021 - Python
Improve this page
Add a description, image, and links to the asyncio topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the asyncio topic, visit your repo's landing page and select "manage topics."
First check