You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
aiohttp and aiosocks are the last asyncio libraries in the project, and both are used in the downloader. We could migrate aiohttp to asks, which is fully Trio native, but there is no Trio equivalent to aiosocks yet.
The text was updated successfully, but these errors were encountered:
Also while updating the downloader, I can refactor how the session is created. The session object is recreated for every download, but most of its contents are the same. I could either create a kwargs dict in the constructor, or maybe even instantiate the Session object itself.
aiohttp
andaiosocks
are the lastasyncio
libraries in the project, and both are used in the downloader. We could migrateaiohttp
toasks
, which is fully Trio native, but there is no Trio equivalent toaiosocks
yet.The text was updated successfully, but these errors were encountered: