A mocking library for requests.
Project description
httmock
=======
A mocking library for `requests`
------
You can use it to mock third-party APIs and test libraries that use `requests` internally:
```python
from httmock import urlmatch, HTTMock
import requests
@urlmatch(netloc=r'(.*\.)?google\.com$')
def google_mock(url, request):
return 'Feeling lucky, punk?'
with HTTMock(google_mock):
r = requests.get('http://google.com/')
print r.content # 'Feeling lucky, punk?'
```
=======
A mocking library for `requests`
------
You can use it to mock third-party APIs and test libraries that use `requests` internally:
```python
from httmock import urlmatch, HTTMock
import requests
@urlmatch(netloc=r'(.*\.)?google\.com$')
def google_mock(url, request):
return 'Feeling lucky, punk?'
with HTTMock(google_mock):
r = requests.get('http://google.com/')
print r.content # 'Feeling lucky, punk?'
```
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
httmock-1.0.2.tar.gz
(2.3 kB
view details)
File details
Details for the file httmock-1.0.2.tar.gz
.
File metadata
- Download URL: httmock-1.0.2.tar.gz
- Upload date:
- Size: 2.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 30fe3a6f52d515cb4f64ee5edaa18d7a4333a903bba5addf49eb87c7857dd22e |
|
MD5 | e805bf0df3f8fedd65d29cc0becf30e9 |
|
BLAKE2b-256 | a0394932638a6f992686591530a378424509addc14189ee1b5a9ee54ef7ea87d |