Similar to MATLAB File Exchange

Is there a similar website to MATLAB File Exchange in Python? See https://www.mathworks.com/matlabcentral/fileexchange/
I’m a novice Python programmer just landed after a decade of programming with MATLAB.

Closest thing is https://pypi.org/, but the interface is quite different. The development norms in Python are quite different, as well. There’s much less tendency to create a one-or-two file upload and more of a tendency to contribute to larger libraries. I would suggest the https://awesome-python.com/ lists for curated introductions to the many subcommunities of Python users.

1 Like

What you’re talking about is known as packaging, and is more diverse, integrated, interdependent and substantial in Python than it is in MATLAB.

One such repository is PYPI, and another is conda-forge (for the conda distribution of Python), but likely the best way to find packages will be to Google search your specific problem.

1 Like