Python Notes
good to use libs, for things I commonly do.
- typer - cli
- fastapi + sqlalchemy + sqlmodel - BE Service + DB thing, sqlmodel allows bridging SQLAlchemy and Pydantic
- pydantic + pydantic-settings - pydantic for validation and pydantic-settings for config stuff
- openpyxl - excel sheets, avoid pandas if you don’t need the additional stuff.
- paramiko + fabric - SSH client, pure python
- rich - nice logs and console stuff. use Console() and work from there.