Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PyPI index vs simple index

Tags:

python

pypi

I've seen mention both an index and a simple index in relation to PyPI, an example is here in the devpi documentation. Is there some difference between the two indexes? Are they the same or do they have different access controls or functions for example?

like image 687
Yep_It's_Me Avatar asked Jul 18 '14 01:07

Yep_It's_Me


1 Answers

The "simple" index protocol is read-only, intended for automated use, and is defined in PEP 503. Other protocols with more functionality may be defined by particular repository servers, but are probably only usable with that server's own tools.

like image 145
mhsmith Avatar answered Oct 20 '22 01:10

mhsmith