Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes updates to the
heyoo
library to enhance the reliability of HTTP requests by implementing retry logic and updating the base URLs. Additionally, new tests have been added to ensure the retry mechanism works correctly.Enhancements to HTTP requests:
heyoo/__init__.py
: Added a_get_session_with_retries
method to create a session with retry logic usingrequests.adapters.HTTPAdapter
andRetry
. Updated all HTTP requests to use this session. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18] [19] [20]Base URL updates:
heyoo/__init__.py
: Updatedbase_url
andv15_base_url
to use versionv21.0
of the Graph API.Testing enhancements:
tests/test_sending_audio.py
,tests/test_sending_button.py
,tests/test_sending_document.py
,tests/test_sending_image.py
,tests/test_sending_location.py
: Added imports forrequests
,HTTPAdapter
,Retry
, andpatch
. Added new tests to verify retry logic by mockingrequests.Session.send
and asserting the correct number of retries. [1] [2] [3] [4] [5] [6] [7] [8] [9]