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.3.tar.gz
(2.4 kB
view details)
File details
Details for the file httmock-1.0.3.tar.gz
.
File metadata
- Download URL: httmock-1.0.3.tar.gz
- Upload date:
- Size: 2.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 03722053c6da6ad38ec270f6a3efbf8d829ac97ac38b4aa0bfab89cfdaa67bbe |
|
MD5 | 36d4f415ab2946c9fcebf1671c47589c |
|
BLAKE2b-256 | 65515299249fc3ab6890052d3406a92e65ea7bfa5e1a4c157c6c3b145516dd41 |