The cindr.la
Python Package Index
Private, authenticated package registry for @cindrla projects. Install packages with pip or publish with twine.
Serving
16
packages
Quick install
Install a package
Pass the index URL directly to pip when installing a @cindrla package.
pip install --index-url https://pypi.s1.cindrla.world/simple/ PACKAGE
Recommended config
Configure pip permanently
Add the cindr.la index as an extra index so public packages still resolve from PyPI. Edit ~/.config/pip/pip.conf (Linux/macOS) or %APPDATA%\pip\pip.ini (Windows):
[global]
extra-index-url = https://pypi.s1.cindrla.world/simple/
With extra-index-url, pip checks this registry in addition to PyPI โ public dependencies still download from the internet.
Explore
Browse the index
Authenticate with your cindr.la credentials to access the package listing.
Publishing
Upload a package
Use twine to publish built distributions to this registry. You'll be prompted for your cindr.la credentials.
twine upload --repository-url https://pypi.s1.cindrla.world/ dist/*
Or configure a [cindrla] section in ~/.pypirc:
[distutils]
index-servers = cindrla
[cindrla]
repository = https://pypi.s1.cindrla.world/