K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / usr / lib / python2.7 / dist-packages / requests /
server ip : 104.21.89.46

your ip : 172.69.6.238

H O M E


Filename/usr/lib/python2.7/dist-packages/requests/hooks.py
Size820
Permissionrw-r--r--
Ownerroot : root
Create time27-Apr-2025 09:56
Last modified25-Sep-2013 01:57
Last accessed06-Jul-2025 10:31
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
# -*- 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