forked from twintproject/twint
-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import name 'CeilTimeout' from 'aiohttp.helpers' #6
Labels
bug
Something isn't working
Comments
minamotorin
added
invalid
This doesn't seem right
and removed
wontfix
This will not be worked on
labels
Feb 6, 2022
minamotorin
added a commit
that referenced
this issue
Mar 8, 2022
Fix #6 Solution is from twintproject#1360 (comment) I'm not sure about twintproject#831, but it seems work fine with also aiohttp_socks 0.4.1 or later. Version limitation of aiohttp_socks was added by commit twintproject@fef94a5
minamotorin
added
bug
Something isn't working
and removed
invalid
This doesn't seem right
labels
Mar 8, 2022
This was a bug. Fixed in 0c63886. Solution and following description is from twintproject#1360 (comment) by @tperka.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Some users report that the error
import name 'CeilTimeout' from 'aiohttp.helpers'
happend with recentaiohttp
.And they said that the solution is using old
aiohttp
(v3.7.0).However, the problem doesn't occur for me.
Surely, it seems that
aiohttp.helpers.CeliTimeout
was removed sinceaiohttp
v3.8.0, but other codes ofaiohttp
were also updated to stop usingaiohttp.helpers.CeliTimeout
.aiohttp.helpers.CeliTimeout
might inner code ofaiohttp
and it might have to be called by only fromaiohttp
.Twint doesn't call
aiohttp.helpers.CeliTimeout
directly.So I think this is a wrong installation problem of users.Maybe also
python -c 'import aiohttp'
causes the error.Try
pip install --force-reinstall aiohttp
.In my environment, twint works with also both
aiohttp
v3.8.0 and v3.8.1.The text was updated successfully, but these errors were encountered: