Python Links

Python Standard Library
    Functions - built in
    Constants - built in
Python3 Module Index

# sys.path

.
/usr/lib/python37.zip
/usr/lib/python3.7
/usr/lib/python3.7/lib-dynload

~/.local/lib/python3.7/site-packages

/usr/local/lib/python3.7/dist-packages
/usr/lib/python3/dist-packages

WinPython (portable)
    python3 help
    jupyter notebook --no-browser
UV - Python package manager
    written in Rust
Ruff - fast Python linter and code formatter
Python Package Index (pip)
    aptitude install python3-pip python3-venv
    pip package installer - docs
Python in VS Code
Python environments (VS Code)
Python (Linting) in VS Code
    Linting highlights syntactical and stylistic errors in your Python source code
Pylint - default linter for VS Code

Python3 Documentation
    Python3 Tutorial
Python (Homebrew)
    macOS
Python Tutorial - W3Schools
Python Design Patterns

pydoc3 - Documentation generator
    pydoc3 <module_name>
    pydoc3 -w <module_name / package_name>
    pydoc3 -b -p <portNumber>

Flask - lightweight WSGI web application framework
Flask-SQLAlchemy
    SQLAlchemy
Flask-RESTful
FastAPI
Django Web Framework