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 May 30, 2024 10:11
Example of mocking requests calls
#!/usr/bin/env python
"""
mocking requests calls
"""
import mock
import unittest
import requests
from requests.exceptions import HTTPError