Sourcemap Explorer
Stack · Programming languages

Python

Python is an interpreted and general-purpose programming language.

Programming languages

What detecting Python tells you about a site

Python is a backend language, so a browser never receives Python — you detect it from what the server emits. The classic tells are a `Server` or `X-Powered-By` header naming a WSGI/ASGI stack, a `csrftoken`/`sessionid` cookie pair (Django), a `/static/` asset convention, or admin paths like `/admin/`. Finding them tells you the application logic, data layer and templating very likely live in Python, which in turn suggests a data-, ML- or content-heavy product where Python's ecosystem is the draw.

Python in a real-world stack

When you find Python, it rarely travels alone. Django or Flask on the web tier; frequently FastAPI for APIs; and a JavaScript front end bolted on for interactivity rather than a full SPA.

About

Python is an interpreted and general-purpose programming language.

Categories: Programming languages

Quick facts

Official sitehttps://python.org
CategoriesProgramming languages

Detection methodology for Programming languages

Programming languages reveal themselves through extension fingerprints (`.php` URLs for PHP, `.aspx` for ASP.NET), framework-specific patterns and (for client-side runtime languages like TypeScript and Sass) the `node_modules/<lang>/package.json` entry inside the sourcemap. Bun, Node.js and Deno on the server side identify themselves via response headers when emitted (`X-Powered-By: Bun`, `X-Bun-Version`).

How we detect Python

Sourcemap Explorer carries 1 fingerprint signal for Python, spread across 1 channel — response header. The exact patterns are listed below, and you can replay each one in Chrome DevTools to confirm a match by hand.

Each signal alone is rarely conclusive — Sourcemap Explorer cross-references all of them and weights by confidence. You can reproduce any of these checks yourself in Chrome DevTools.

Response header

Server-side fingerprint: the response header reveals the technology behind the page. Visible in DevTools → Network → response headers.

Server: (?:^|\s)Python(?:/([\d.]+))?

FAQ

How do I check if a website is using Python?

Open the page in Chrome, click the Sourcemap Explorer toolbar icon, and read the Stack tab. Python's specific fingerprints here are response header, and the popup flags Python whenever any combination of them is found. The same checks can be reproduced manually in DevTools — see the "How we detect" section above.

What Python version can Sourcemap Explorer detect?

Python ships as a hosted programming languages rather than a bundled npm package, so version-specific detection isn't always possible. Where the platform leaks a version in response headers (`X-Powered-By`, `Server`, generator meta tags) we surface it; otherwise we report presence only.

Where can I read more about Python?

Official site: https://python.org. For Sourcemap Explorer's detection guide, see the deep-dive link below or the related guides in the cross-link section.

Keep reading on Sourcemap Explorer

Practical guides

Alternative tools

Detected by Sourcemap Explorer

Open the popup on any page running Pythonand you'll see the exact version pulled from the bundled package.json when sourcemaps are exposed.

Install free on Chrome