aiohttp
Here are 755 public repositories matching this topic...
As a few Socket Mode related tests started failing only in the GitHub Actions environment, I've disabled them by this commit: slackapi/python-slack-sdk@75b554a
We would like to get the tests back to the running tests in CI builds once we figure out the way to make them stable.
Category (place an x in each of the [ ])
- [ ]
-
Updated
Jul 29, 2021 - Python
-
Updated
Jul 29, 2021 - Python
-
Updated
Jul 29, 2021 - Python
-
Updated
Jul 28, 2021 - Python
-
Updated
Apr 20, 2021 - 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
Currently, we are using the term "event" for both Events API data and any incoming payload requests from Slack in the Bolt document. For example,
- There is the "Listening to events" section: https://slack.dev/bolt-python/concepts#event-listening which is referring to the Events API
- Then there is the "Acknowledging events" section: https://slack.dev/bolt-python/concepts#acknowledge which is
-
Updated
Jul 29, 2021 - Python
-
Updated
Aug 27, 2019 - Python
Pickled pure Python MultiDicts should be unpickled as Cythonized if unpicker is executed on machine with Cython support.
And vise versa.
Refactor test suite
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.
-
Updated
Jul 30, 2021 - 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
Jun 16, 2021 - Python
-
Updated
Jul 1, 2021 - Python
-
Updated
Oct 19, 2020 - 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."


Describe the bug
Originally, @asvetlov intended to delete any use of
attrsfrom aiohttp 4.0+ series via aio-libs/aiohttp#5284. He dropped it from the runtime deps too.But there are some places that still rely on
attrsmeaning that this will cause failures in runtime because of the missing dep. The tests currently succeed because attrs is listed as a test dep.