Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Project
httptap
Checklist
Add project-name- [project-name](url) - Description ending with period.Why This Project Is Awesome
Which criterion does it meet? (pick one)
Explain:
httptap solves one narrowly-scoped problem every backend developer eventually hits: "my API is slow — where is the time going?" It dissects a single HTTP request into DNS resolution, TCP connect, TLS handshake, server wait (TTFB), and body transfer phases, and renders the timings as a Rich waterfall, a compact single-line summary, or machine-readabl
key=valuemetrics — whichever fits the context.Signals of real-world maturity despite a modest star count (485 ⭐ in 6 months):
gh attestation verify.httptap.HTTPTapAnalyzer) with Protocol interfaces for DNS, TLS, timing, visualizer, and exporter — usable programmatically, not CLI-only.--jsonfor post-hoc analysis,--metrics-onlyfor log pipelines, per-step timings for redirect chains.-X,-L,-k,-x,-H) so it drops into existing shell scripts.Repository is ~6 months old (created 2025-10-22) with consistent weekly commits and 30+ commits in the last 90 days.
How It Differs
Existing entries in HTTP Clients (
aiohttp,httpx,requests,urllib3,furl) are general-purpose libraries for issuing requests — none break a request down into per-phase timings. Existing entries inDebugging Tools (
py-spy,scalene,pudb, etc.) profile CPU, memory, or control flow of Python code — none profile the network phases of an HTTP exchange.httptap fills the gap between these two categories: it is a diagnostic / debugging tool specifically for HTTP request latency (DNS → TCP → TLS → TTFB → transfer), which is a recurring source of production
incidents that general HTTP clients cannot diagnose and general profilers cannot see. Closest conceptual sibling outside Python is
httpstat(a curl wrapper) orcurl -w, both non-Python and without a libraryAPI.
This is why it is proposed under Debugging Tools → Network (new subcategory) rather than HTTP Clients.