-
Updated
Nov 12, 2020 - Python
asyncio
Here are 1,863 public repositories matching this topic...
-
Updated
Nov 6, 2020 - Python
Hello!
I've noticed, that aiohttp is simply concatenating server-response (or client-request) header like this, w/o any validation:
line = status_line + '\r\n' + ''.join(
[k + ': ' + v + '\r\n' for k, v in headers.items()])Which may be not okay, if some of the header values were based on user input.
Consider this example:
import aiohttp.web
asyn-
Updated
Nov 2, 2020 - Python
Could the link in https://github.com/encode/httpx/blob/master/docs/compatibility.md for Request instances be updated from https://github.com/encode/httpx/blob/master/advanced#request-instances to https://github.com/encode/httpx/blob/master/docs/advanced.md#request-instances
-
Updated
Nov 12, 2020 - Python
-
Updated
Nov 10, 2020 - Python
-
Updated
Nov 7, 2020 - Python
-
Updated
Nov 10, 2020
-
Updated
Oct 9, 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
Dec 27, 2019 - Python
-
Updated
Nov 2, 2020 - Python
-
Updated
Nov 12, 2020 - Python
-
Updated
Oct 3, 2020 - Python
-
Updated
Nov 9, 2020 - Python
-
Updated
Nov 12, 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 4, 2020 - C++
-
Updated
Oct 1, 2020 - Python
-
Updated
Oct 21, 2020 - Python
-
Updated
Nov 9, 2020 - Python
Summary
Fixed Bad Request: unsupported parse_mode error due to missing prepare_parse_mode line
P.S. Do I have to cover this case by tests?
UPD. May be a bit related to #387
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