Example `aiohttp_fetch` hanging on windows
See original GitHub issueUsing with PySide2 5.14.2
Tested with Python 3.7.5 64 Bit (Microsoft Visual Studio default Install):
- The window pops up but is empty and it instantly hangs, no UI is rendered at all (Instantly in
Not responding
state)
Tested with Python 3.8.1 64 Bit (Python.org download):
- Windows shows up and displays correctly
- On click on fetch button the window freezes and hangs (
Not responding
)
Has this been tested to work on Windows recently? Which version of Python and PySide2/Qt are known to work?
Issue Analytics
- State:
- Created 3 years ago
- Comments:7 (5 by maintainers)
Top Results From Across the Web
concurrent requests are getting hung #3698 - aio-libs/aiohttp
Here's a sample code that I am using to test concurrent requests. import aiohttp import asyncio async def fetch(session, url): async with ...
Read more >aiohttp - concurrent requests are getting hung - Stack Overflow
Here's a sample code that I am using to test concurrent requests. import aiohttp import asyncio async def fetch(session, url): async ...
Read more >FAQ — aiohttp 3.8.3 documentation
As result fetch() call hangs. To avoid import dependency hell aiohttp encourages creation of ClientSession from async function. The same policy works for...
Read more >Making 1 million requests with python-aiohttp
How many requests per minute will aiohttp make? What kind of exceptions and crashes can you expect when you try to make such...
Read more >Async HTTP Requests with Aiohttp & Aiofiles
Sample Output. For each URL found in our input CSV, our script will fetch the URL, parse the page, and write some choice...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
PySide2
5.14.2.2
and5.15.0
just released, and I can’t reproduce the issue with those versions anymore.However with
5.15.0
the application doesn’t exit after closing the main window and keeps running until the process is killed. I’ve created a separate issue for that. (Update: This seems to be resolved in5.15.1
.)Sure. At least it narrows down the cause a tiny bit.