# -*- coding: utf-8 -*-
"""
requests.hooks
~~~~~~~~~~~~~~
This module provides the capabilities for the Requests hooks system.
Available hooks:
``response``:
The response generated from a Request.
"""
HOOKS = ['response']
def default_hooks():
hooks = {}
for event in HOOKS:
hooks[event] = []
return hooks
# TODO: response is the only one
def dispatch_hook(key, hooks, hook_data, **kwargs):
"""Dispatches a hook dictionary on a given piece of data."""
hooks = hooks or dict()
if key in hooks:
hooks = hooks.get(key)
if hasattr(hooks, '__call__'):
hooks = [hooks]
for hook in hooks:
_hook_data = hook(hook_data, **kwargs)
if _hook_data is not None:
hook_data = _hook_data
return hook_data
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| packages | Folder | 0755 |
|
|
| __init__.py | File | 1.81 KB | 0644 |
|
| adapters.py | File | 14.27 KB | 0644 |
|
| api.py | File | 4.24 KB | 0644 |
|
| auth.py | File | 5.98 KB | 0644 |
|
| cacert.pem | File | 301.21 KB | 0644 |
|
| certs.py | File | 544 B | 0644 |
|
| compat.py | File | 2.5 KB | 0644 |
|
| cookies.py | File | 16.29 KB | 0644 |
|
| exceptions.py | File | 1.83 KB | 0644 |
|
| hooks.py | File | 820 B | 0644 |
|
| models.py | File | 25.82 KB | 0644 |
|
| sessions.py | File | 21.77 KB | 0644 |
|
| status_codes.py | File | 3.06 KB | 0644 |
|
| structures.py | File | 3.46 KB | 0644 |
|
| utils.py | File | 19.5 KB | 0644 |
|