Is PyPI down right now?
Real-time PyPI status pulled from status.python.org. PyPI is operated by the Python Software Foundation and covers pip downloads, package uploads, the search API, and the project pages on pypi.org. If your CI is failing on `pip install` or `poetry lock` is timing out, this page will tell you whether PyPI itself is degraded.
3 services reporting issues
PyPI
OperationalPython Package Index — pip install backend.
Status from status.python.org · last fetched 7s ago
Developer Platforms
Upstream returned 404
Upstream returned 404
Atlassian source hosting and Pipelines.
Source hosting, Actions, Pages, Packages, Copilot.
macOS / Linux package manager (uses GitHub).
JavaScript registry, install API, web app.
Python Package Index — pip install backend.
AI / ML APIs
Upstream returned invalid JSON
Error rates across multiple models — started 1 hr ago
AI code editor — chat, tab, composer.
AI pair programmer — completions, chat, agents.
Gemini API, Vertex AI, AI Studio.
ChatGPT, GPT-4, GPT-5, DALL-E, Whisper APIs.
Run open-source ML models via API.
Cloud / Hosting
Cloudflare Workers build failures — started 3 min ago
Cloud Control Panel Access — started 25 min ago
Upstream returned 404
Upstream returned invalid JSON
EC2, S3, Lambda, RDS, and 200+ services.
Global app servers, Postgres, volumes.
Compute, Storage, BigQuery, Cloud Run.
Azure VMs, App Service, AKS, Azure SQL.
Static + Jamstack hosting, Functions, Forms.
Web services, cron, Postgres, Redis.
Next.js hosting, Edge, Serverless functions.
Databases / Data
Upstream returned 404
Upstream returned invalid JSON
Upstream returned invalid JSON
Impaired Cluster Operations – AWS me-central-1 (United Arab Emirates) and AWS me-south-1 (Bahrain) — started 154 days ago
Serverless MySQL, Vitess-backed.
Management API Performance Degradation — started 2 days ago
Payments / Infra
Voice Call Silent and One-Way Audio from Brazil to a Subset of Twilio Phone Numbers — started 8 min ago
Upstream returned invalid JSON
Upstream returned 404
Upstream returned 404
Developer-first transactional email API.
SendGrid Status Page Migration to Twilio Status Page — July 29, 2026 — started 25 days ago
Auth / Identity
Communication
Monitoring / Dev Tools
Upstream returned invalid JSON
Upstream returned invalid JSON
APM, infra, logs, RUM, synthetics.
Collaborative design, FigJam, Dev Mode.
Feature flags, experiments, releases.
Error monitoring, performance, replays.
DevZone aggregates publicly available status data and refreshes every 30 seconds. Status indicators reflect each provider’s own machine-readable feed; for incident details and authoritative information, always consult the official status page linked on each card.
Quick facts about PyPI
- PyPI’s status page is hosted at status.python.org (Statuspage.io).
- PyPI is fronted by Fastly — Fastly outages frequently cause PyPI degradation even when the origin is healthy.
- pip installs are read-heavy; uploads happen on a separate path that can fail independently.
- Test PyPI (test.pypi.org) is tracked separately from the production index.
Frequently asked questions
Why is my pip install slow?
Slow pip installs during a PyPI degradation usually look like long stalls on "Downloading" or "Collecting". Check the dashboard above — if PyPI shows degraded, it’s a CDN/origin issue. If it’s green, try `pip install --index-url https://pypi.org/simple/` to bypass any local mirror.
Does PyPI have a status API?
Yes — https://status.python.org/api/v2/summary.json. Standard Statuspage schema.
How do I install Python packages while PyPI is down?
If you have wheels cached locally, `pip install --no-index --find-links=/path/to/wheels` works offline. For CI, use a mirror like Bytesafe, Artifactory, or your cloud provider’s package proxy — they cache PyPI and survive PyPI outages.
Why does Poetry fail when PyPI is healthy?
Poetry hits the simple JSON index at /simple/<package>/. Even when PyPI’s web UI is fine, the JSON index can lag. Try `poetry --no-cache install` to see if the actual download path is failing.