gitextract_uv6mnn0a/ ├── .gitignore ├── Backend/ │ ├── FastAPI/ │ │ ├── db/ │ │ │ ├── client.py │ │ │ ├── models/ │ │ │ │ └── user.py │ │ │ └── schemas/ │ │ │ └── user.py │ │ ├── main.py │ │ ├── requirements.txt │ │ ├── routers/ │ │ │ ├── basic_auth_users.py │ │ │ ├── jwt_auth_users.py │ │ │ ├── products.py │ │ │ ├── users.py │ │ │ └── users_db.py │ │ └── vercel.json │ └── type_hints.py ├── Basic/ │ ├── 00_helloworld.py │ ├── 01_variables.py │ ├── 02_operators.py │ ├── 03_strings.py │ ├── 04_lists.py │ ├── 05_tuples.py │ ├── 06_sets.py │ ├── 07_dicts.py │ ├── 08_conditionals.py │ ├── 09_loops.py │ ├── 10_functions.py │ ├── 11_classes.py │ ├── 12_exceptions.py │ ├── 13_modules.py │ └── my_module.py ├── Intermediate/ │ ├── 00_dates.py │ ├── 01_list_comprehension.py │ ├── 02_challenges.py │ ├── 03_lambdas.py │ ├── 04_higher_order_functions.py │ ├── 05_error_types.py │ ├── 06_file_handling.py │ ├── 07_regular_expressions.py │ ├── 08_python_package_manager.py │ ├── my_file.csv │ ├── my_file.json │ ├── my_file.txt │ └── mypackage/ │ ├── __init__.py │ └── arithmetics.py ├── LICENSE └── README.md