Skip to content

Instantly share code, notes, and snippets.

View Jeffrey95's full-sized avatar

邱锦锋 Jeffrey95

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