Skip to content

Instantly share code, notes, and snippets.

View itstrueimryan's full-sized avatar

Ryan itstrueimryan

View GitHub Profile
@evansde77
evansde77 / mock_requests.py
Last active January 31, 2024 08:49
Example of mocking requests calls
#!/usr/bin/env python
"""
mocking requests calls
"""
import mock
import unittest
import requests
from requests.exceptions import HTTPError