Viewing profile — cle-b
cle-b
HN member- Joined
- Wed, Sep 25, 2024, 6:35 PM UTC
- HN karma
- 86
- Public activity
- 9 items
- HN profile
- View on Hacker News ↗
About cle-b
No profile information was provided.
Recent public activity
-
story
Show HN: Pytest-httpdbg – a simple way to include HTTP traces in Allure reports
Hi HN, I recently updated my pytest plugin based on httpdbg to include the HTTP traces directly in the Allure reports. As with httpdbg, the idea is to have nothing more to do than …
-
comment
Comment #44720639
Source: https://github.com/cle-b/hookdns PyPI: https://pypi.org/project/hookdns/
-
story
Show HN: Hookdns (for Python devs)- Because /etc./hosts is not always an option
Hi, The aim of this Python library is to let you define (or override) DNS resolution directly in your code. No need to modify the hosts file or use an external DNS resolver. I crea…
-
story
Show HN: See what your Python app sends and receives over HTTP
Hi, A few months ago, I shared a tool I built for personal use to easily trace HTTP client requests in any Python app. It links requests to the corresponding Python code and comes …
-
comment
Comment #41651783
I really like vrcpy. I used it a lot with pytest in my previous job. httpdbg isn’t exactly the same; the idea is more about seeing HTTP requests in real-time and being able to easi…
-
comment
Comment #41651733
Unlike other tools such as proxies that allow you to trace HTTP requests, httpdbg makes it possible to link the HTTP request to the Python code that initiated it. This is why it is…
-
comment
Comment #41651513
It works only with Python code because it intercepts HTTP requests by hooking into certain Python functions. It supports any HTTP library based on Python’s standard socket library.…
-
comment
Comment #41651414
If you want to trace the HTTP requests in a notebook, you must install the package notebook-httpdbg. This is documented here: https://httpdbg.readthedocs.io/en/latest/notebook/
-
story
Show HN: Httpdbg – A tool to trace the HTTP requests sent by your Python code
Hi, I created httpdbg, a tool for Python developers to easily debug HTTP(S) client requests in Python programs. I developed it because I needed a tool that could help me trace the …