-
Updated
Oct 18, 2020 - Python
aiohttp
Here are 630 public repositories matching this topic...
-
Updated
Aug 15, 2020 - Python
-
Updated
Oct 12, 2020 - Python
-
Updated
Oct 17, 2020 - Python
-
Updated
Sep 28, 2020 - Python
-
Updated
Jul 7, 2020 - Vue
Should be easy to do and good exercise. Would be cool to have some sort of social auth via github/twitter/google integration.
Some examples:
https://github.com/skftn/flask-pastebin
https://github.com/mitsuhiko/flask-pastebin
-
Updated
Nov 30, 2018 - Python
-
Updated
Oct 14, 2020 - Python
-
Updated
Aug 27, 2019 - Python
I.e. if you have a variable specified as endCursor but you wrote your query to take lastCursor, it will simply just "work" thanks to apparently GitHub just assuming null for missing variables and not caring about variables that don't line up.
Pickled pure Python MultiDicts should be unpickled as Cythonized if unpicker is executed on machine with Cython support.
And vise versa.
Refactor test suite
-
Updated
Oct 13, 2020 - Python
-
Updated
Oct 12, 2020 - Python
Will be great have approach to put some arguments for make test or commands some like this.
For that we need add some like that into Makefile.
# arguments
FIRST_ARG := $(firstword $(MAKECMDGOALS))
ARGS = $(filter-out $@,$(MAKEOVERRIDES) $(MAKECMDGOALS))
MAKEFILE_PATH := $(abspath $(firstword $(MAKEFILE_LIST)))
%:
@:
and after that add ${ARGS} to our commands
te
-
Updated
Oct 1, 2020 - Python
-
Updated
Sep 9, 2020 - Python
-
Updated
Jul 15, 2019 - Python
Improve this page
Add a description, image, and links to the aiohttp topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the aiohttp topic, visit your repo's landing page and select "manage topics."


Is your feature request related to a problem? Please describe.
Related to a problem surfaced by @Shanoir on Gitter.
Describe the solution you'd like
I think that it would be a good idea for us to let users set the filename and content-type headers through the Part annotation. Maybe like so:
@multip