UV
- Ultra fast package manager Refer Here
- UV helps in basic project creation
- installing: use brew or winget
Python project creation options
- uv helps in creating two types of python projects (applicaton and library)
- default option is app
- Lets build an app
mkdir hello_uv_app
cd hello_uv_app
uv init .

- Lets create a library
mkdir hello_uv_lib
cd hello_uv_lib
uv init --lib .

- Prompt
You are an expert in python
Create a training exercise for me to be come effecient with uv package manager
Give one Exercise with responses, wait for me to do and then go to next
How to build api clients with access/credentials
Lets try currency converter
-
i found Refer Here
-
Watch classroom video.
