Home / Function/ test_prepared_request_hook() — requests Function Reference

test_prepared_request_hook() — requests Function Reference

Architecture documentation for the test_prepared_request_hook() function in test_requests.py from the requests codebase.

Entity Profile

Dependency Diagram

graph TD
  2feb9a84_71a1_ca0a_c285_b622c8a9acc3["test_prepared_request_hook()"]
  22b80b19_26d4_cd0e_c476_3edf87b3df14["TestRequests"]
  2feb9a84_71a1_ca0a_c285_b622c8a9acc3 -->|defined in| 22b80b19_26d4_cd0e_c476_3edf87b3df14
  772251a3_91b5_d6a8_857f_bb938ed045f7["send()"]
  2feb9a84_71a1_ca0a_c285_b622c8a9acc3 -->|calls| 772251a3_91b5_d6a8_857f_bb938ed045f7
  style 2feb9a84_71a1_ca0a_c285_b622c8a9acc3 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

tests/test_requests.py lines 1191–1203

    def test_prepared_request_hook(self, httpbin):
        def hook(resp, **kwargs):
            resp.hook_working = True
            return resp

        req = requests.Request("GET", httpbin(), hooks={"response": hook})
        prep = req.prepare()

        s = requests.Session()
        s.proxies = getproxies()
        resp = s.send(prep)

        assert hasattr(resp, "hook_working")

Domain

Subdomains

Calls

Frequently Asked Questions

What does test_prepared_request_hook() do?
test_prepared_request_hook() is a function in the requests codebase, defined in tests/test_requests.py.
Where is test_prepared_request_hook() defined?
test_prepared_request_hook() is defined in tests/test_requests.py at line 1191.
What does test_prepared_request_hook() call?
test_prepared_request_hook() calls 1 function(s): send.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free