How to python documentation
posted
One of the things that's frustrated me about python is searching "python iterable" rarely brings up the actual python documentation
So this is how to actually find stuff
- python documentation: https://docs.python.org
- glossary has good high level descriptions, search works
python -m pydoc thing
orhelp("thing")
in the repl get docstrings for something- https://sphinx.rip
https://sphinx.rip/py/$package[.$Class[.$method]]
shortcuts to python documentation if you know the exact thinghttps://sphinx.rip/py/typing.$type
most types are probably linked in typing package