aiohttp
Here are 645 public repositories matching this topic...
-
Updated
Nov 26, 2020 - Python
-
Updated
Dec 2, 2020 - Python
-
Updated
Dec 3, 2020 - Python
-
Updated
Sep 28, 2020 - Python
-
Updated
Oct 28, 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
Dec 4, 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 19, 2020 - Python
-
Updated
Dec 2, 2020 - Python
-
Updated
Dec 1, 2020 - Python
-
Updated
Sep 9, 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
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."
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#L161We need to add
Finaltype 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).