-
Updated
Nov 24, 2020 - Python
asyncio
Here are 1,877 public repositories matching this topic...
-
Updated
Nov 24, 2020 - Python
The library has many constant definitions that are declared as NAME = 'val'
, e.g. https://github.com/aio-libs/aiohttp/blob/master/aiohttp/client.py#L161
We need to add Final
type hint to let users know that these constants should be considered as immutable (this hint doesn't prevent the actual modification and fully backward compatible).
from typing_extensions import Final # suppor
-
Updated
Nov 18, 2020 - Python
Our environment variable documentation should include some justification or context for each case, by doing one of the following for each envvar:
- Make it clear that an environment variable is specific to HTTPX. (Probably only relevant to anything prefixed by
HTTPX_
) - Make it clear that an environment variable is used as a convention by
-
Updated
Nov 24, 2020 - Python
-
Updated
Nov 17, 2020 - Python
-
Updated
Nov 24, 2020 - Python
-
Updated
Nov 10, 2020
-
Updated
Nov 20, 2020 - Python
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 22, 2020 - Python
-
Updated
Dec 27, 2019 - Python
-
Updated
Nov 23, 2020 - Python
-
Updated
Nov 17, 2020 - Python
-
Updated
Nov 20, 2020 - Python
-
Updated
Nov 21, 2020 - 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
Nov 22, 2020 - C++
-
Updated
Oct 1, 2020 - Python
-
Updated
Oct 21, 2020 - Python
-
Updated
Nov 23, 2020 - Python
Let's just return call result, without creating new name.
return await self.request(api.Methods.CLOSE, payload)
Originally posted by @uwinx in aiogram/aiogram#454 (comment)
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