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
asynchronously handle API requests using aiohttp instead of the synchronous requests library in bot.py
Use Case
1.Non-blocking I/O: With aiohttp, your bot won't block the event loop while waiting for responses from the CoinGecko API. This improves the responsiveness of your bot, especially under heavy load or slow network conditions. 2.Better performance: Using asyncio and aiohttp allows multiple API requests to be made concurrently without holding up other tasks, leading to improved efficiency and faster response times.
Benefits
No response
Priority
High
Record
I agree to follow this project's Code of Conduct
I'm a GSSOC WOB24 contributor
I want to work on this issue
I'm willing to provide further clarification or assistance if needed.
The text was updated successfully, but these errors were encountered:
Hi there! Thanks for opening this issue. We appreciate your contribution to this open-source project. We aim to respond or assign your issue as soon as possible.
Is there an existing issue for this?
Feature Description
asynchronously handle API requests using aiohttp instead of the synchronous requests library in bot.py
Use Case
1.Non-blocking I/O: With aiohttp, your bot won't block the event loop while waiting for responses from the CoinGecko API. This improves the responsiveness of your bot, especially under heavy load or slow network conditions.
2.Better performance: Using asyncio and aiohttp allows multiple API requests to be made concurrently without holding up other tasks, leading to improved efficiency and faster response times.
Benefits
No response
Priority
High
Record
The text was updated successfully, but these errors were encountered: