6 ms·
PyPI in 2025: A Year in Review
- dalanmiller 9mo agoGreat work Dustin and team!
- heavyset_go 9mo agoOne of the big companies making billions on Python software should step up and fund the infrastructure needed to enable PyPI package search via the CLI, like you could with `pip search` in the past.
- firesteelrain 9mo agoFunding could help, but it still requires PyPI/Warehouse to ship and operate a new public search interface that is safe at internet scale.
- coldtea 9mo agoThey operate a public package hosting interface, how is a search one any harder?
- miketheman 9mo agoPyPI responses are cached at 99% or higher, with less infrastructure to run. Search is an unbounded context and does not lend itself to caching very well, as every search can contain anything
- bastawhiz 9mo agoPypi has fewer than one million projects. The searchable content for each package is what? 300 bytes? That's a 200mb index. You don't even need fancy full text search, you could literally split the query by word and do a grep over a text file. No need for elasticsearch or anything fancy. And anyway, hit rates are going to be pretty good. You're not taking arbitrary queries, the domain is pretty narrow. Half the queries are going to be for requests, pytorch, numpy, httpx, and the other usual suspects.
- froh 9mo agoI wonder how a PyPi search index could be statically served and locally evaluated on `pip search`?
- firesteelrain 9mo agoPyPI servers would have to be constantly rebuilding a central index and making it available for download. Seems inefficient
- ptx 9mo agoDebian is somehow able to manage it for apt.
- firesteelrain 9mo ago1. Debian is local first via client side cache 2. apt repositories are cryptographically signed, centrally controlled, and legally accountable. 3. apt search is understood to be approximate, distro-scoped, and slow-moving. Results change slowly and rarely break scripts. PyPI search rankings change frequently by necessity 4. Turning PyPI search into an apt-like experience would require distributing a signed, periodically refreshed global metadata corpus to every client. At PyPI’s scale, that is nontrivial in bandwidth, storage, and governance terms 5. apt search works because the repository is curated, finite, and opinionated
- froh 9mo agoisn't this an incrementally updatable tree that is managed with a Merkle tree? git-like, essentially?
- firesteelrain 9mo agoThe install side is basically Merkle-friendly (immutable artifacts, append-only metadata, hashes, mirrors). Search isn’t. Search results are derived, subjective, and frequently rewritten (ranking tweaks, spam/malware takedowns, popularity signals). That’s more like constantly rebasing than appending commits. You can Merklize “what files exist”; you can’t realistically Merklize “what should rank for this query today” without freezing semantics and turning CLI search into a hard API contract.
- Kwpolska 9mo agoHow does the big white search box at https://pypi.org/ https://pypi.org/ work? Why couldn’t the same technology be used to power the CLI? If there’s an issue with abuse, I don’t think many people would mind rate limiting or mandatory authentication before search can be used.
- firesteelrain 9mo agoThe PyPI website search is implemented using a real search backend (historically Elasticsearch/OpenSearch–style infrastructure) layered behind application logic on Python Package Index. Queries are tokenized, ranked, filtered, logged, and throttled. That works fine for humans interacting through a browser. The moment you expose that same service to a ubiquitous CLI like pip, the workload changes qualitatively. PyPI has the /simple endpoint that the CDN can handle. It’s PyPI philosophy that search happens on the website and pip has aligned to that. Pip doesn’t want to make a web scraper understandably so the function of searching remains disabled
- bastawhiz 9mo agoPypi has a search interface on their public website, though?
- BiteCode_dev 9mo agoIf you really need it, they publish a dump regularly and you can query that. For simple use cases, you have the web search, and you can curl it.
- woodruffw 9mo agoSerious question: how important is `pip search` to your workflows? I don’t think I ever used it, back when PyPI still had an XMLRPC search endpoint. (I think the biggest blocker on CLI search isn’t infrastructure, but that there’s no clear agreement on the value of CLI search without a clear scope of what that search would do. Just listing matches over the package names would be less useful than structured metadata search for example, but the latter makes a lot of assumptions about the availability of structured metadata!)
- heavyset_go 9mo agoNot important at all now, given that it hasn't worked in a decade and I've filed it away as pointless to even consider for a workflow. However, I get a lot of mileage out of package repository search with package managers like pacman, apt, brew, winget, chocolatey and npm. > I think the biggest blocker on CLI search isn’t infrastructure It's why it was shut down, the API was getting hammered and it cost too much to run at a reasonable speed and implement rate limiting or whatever.
- woodruffw 9mo ago> It's why it was shut down, the API was getting hammered and it cost too much to run at a reasonable speed and implement rate limiting or whatever. Sort of: the original search API used a POST and was structured with XML-RPC. PyPI’s operators went to great efforts to scale it, but that wasn’t a great starting point. A search API designed around caching (like the one used on PyPI’s web UI) wouldn’t have those problems.
- rat9988 9mo agoThey probably don't need it. You can start a crowdfunding campaign if you do.
- talideon 9mo agoI upvoted you because I broadly agree with you, but search is never coming back in the API. They previously outlined the cost involved and there's no way, given how minimal the value it gives more broadly, it's coming back ant time soon. It's basically an abusive vector because of the compute cost.
- nmstoker 9mo agoGreat work! Side issue: anyone else seeing that none of the links in the article work? They're all 404s.
- miketheman 9mo agoWhoops, sorry about that. Should be fixed now. Happy New Year!
- nmstoker 9mo agoThanks! I confirm they're all working for me now! Happy New Year!
- fud101 9mo agoThis seems to suggest once the bubble pops, it will take Python down with it. The next AI winter will definitely replace Lisp with Python.
- zahlman 9mo ago> 1.92 exabytes of total data transferred That's something like triple the amount from 2023, yes?
- nodesocket 9mo agoIs the compute and network required to service pypi all from donations or do they have any business arm that generates income?
- miketheman 9mo agoThe infrastructure sponsors can be found in the PyPI footer, and here: https://pypi.org/sponsors/#:~:text=Infrastructure%20sponsors https://pypi.org/sponsors/#:~:text=Infrastructure%20sponsors
- amluto 9mo ago> Trusted Publishing Why do people come up with such unbelievably complex solutions that don’t actually achieve what a simple solution could do? Trusted Publishing approximately involves a service like GitHub proving to somebody that some release artifact came from a GitHub Actions workflow file with a particular name, possibly in a particular commit. Never mind that GitHub Actions is an unbelievable security nightmare and that it’s probably not particularly hard for a malicious holder of GitHub credentials to stealthily or even completely silently compromise their own Actions workflow to produce malicious output. But even ignoring that, it’s wildly unclear what is “trusted”. PyPI encourages developers to also use “attestations”. Read this and try to tell me what is being attested to: https://docs.pypi.org/attestations/producing-attestations/ https://docs.pypi.org/attestations/producing-attestations/ But I did learn that this is based on Sigstore. Sigstore is very impressive: it’s a system by which GitHub can attest via OIDC to various state, and a service called Fulcio (which we’re supposed to trust) uses its secret key to sign a message stating that GitHub did so at a certain time. (The OIDC transcript itself is not a durable attestation.) There’s even a transparency log (which is a separate system called Rekor maintained by the same organization). Except that, for some reason, Fulcio doesn’t do that at all. Instead it issues an X.509 certificate with an expiration in the near future where the certificate fields encode whatever GitHub attested to in its OIDC exchange, and the Sigstore client (which is hopefully a bit trustworthy) is supposed to use the private key (which it knows, in the clear, but is supposed to immediate forget) to sign a message that is associated with the release artifact or whatever else is being attested to. And then a separate transparency log records the signature and supposedly timestamps it so everyone one can verify the attestation later even though the certificate is expired! Why not just sign the message on the Fulcio server (which has an HSM, hopefully) directly? All of this is trying to cryptographically tie a package on PyPI.org to a git tag. But: why not just do it directly? For most pure Python packages, which is a whole lot of packages, the distribution artifact is literally a zip file containing files from git, verbatim, plus some metadata. PyPI could check the GitHub immutable tag, read the commit hash, and verify the whole chain of hashes from the files to the tree to the commit. Or PyPI could even run the build process itself in a sandbox. (If people care about .pyc files, PyPI could regenerate them (again, in a sandbox), but omitting them might make sense too — after all, uv doesn’t even build them by default.) This would give much stronger security properties with a much more comprehensible system and no dependence on the rather awful security properties of GitHub Actions.
- musicale 9mo ago> More than 3.9 million new files published > More than 130,000 new projects created Is there any way to prevent PyPI from becoming a morass of supply chain attacks like NPM etc.? The cited security measures (though some of them like domain resurrection protection are probably very good ideas) seem like they won't, but it also seems like a very hard problem to solve, given the vast scale as well as core issues like malicious (but seemingly innocuous) upstream commits.