Home > database >  Is there a website that lists all non standard python libraries?
Is there a website that lists all non standard python libraries?

Time:01-08

I am new to python, I have started with pandas, but I am not sure where to find a complete list of all non standard libraries if I were faced with a problem that pandas could not solve.

I have tried python documentations, but could not find anything

CodePudding user response:

There is no official website that lists all non-standard Python libraries. However, you can check them up on these following links:

  • The Python Package Index (PyPI) is the official package repository for Python libraries. It contains both standard and non-standard libraries. You can browse PyPI at https://pypi.org/.

  • The Awesome Python list is a curated list of Python packages and resources. It includes both standard and non-standard libraries, as well as tools and frameworks. You can find the Awesome Python list at https://awesome-python.com/.

  • Related