├── .DS_Store ├── .gitignore ├── Database Scripts ├── MySQLScript.sql └── PostgreSQLScript.sql ├── Project 1 └── books.py ├── Project 2 └── books2.py ├── Project 3.5 ├── .DS_Store └── TodoApp │ ├── .DS_Store │ ├── __init__.py │ ├── alembic.ini │ ├── alembic │ ├── README │ ├── env.py │ ├── script.py.mako │ └── versions │ │ └── aeff25f89db0_create_phone_number_for_user_col.py │ ├── database.py │ ├── main.py │ ├── models.py │ └── routers │ ├── __init__.py │ ├── admin.py │ ├── auth.py │ ├── todos.py │ └── users.py ├── Project 3 ├── .DS_Store └── TodoApp │ ├── .DS_Store │ ├── __init__.py │ ├── database.py │ ├── main.py │ ├── models.py │ └── routers │ ├── __init__.py │ ├── admin.py │ ├── auth.py │ ├── todos.py │ └── users.py ├── Project 4 └── TodoApp │ ├── .DS_Store │ ├── __init__.py │ ├── alembic.ini │ ├── alembic │ ├── README │ ├── env.py │ ├── script.py.mako │ └── versions │ │ └── aeff25f89db0_create_phone_number_for_user_col.py │ ├── database.py │ ├── main.py │ ├── models.py │ ├── routers │ ├── __init__.py │ ├── admin.py │ ├── auth.py │ ├── todos.py │ └── users.py │ └── test │ ├── __init__.py │ ├── test_admin.py │ ├── test_auth.py │ ├── test_example.py │ ├── test_main.py │ ├── test_todos.py │ ├── test_users.py │ └── utils.py ├── Project 5 ├── .DS_Store └── TodoApp │ ├── .DS_Store │ ├── __init__.py │ ├── alembic.ini │ ├── alembic │ ├── README │ ├── env.py │ ├── script.py.mako │ └── versions │ │ └── aeff25f89db0_create_phone_number_for_user_col.py │ ├── database.py │ ├── main.py │ ├── models.py │ ├── routers │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── auth.py │ ├── todos.py │ └── users.py │ ├── static │ ├── .DS_Store │ ├── css │ │ ├── base.css │ │ └── bootstrap.css │ └── js │ │ ├── base.js │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── jquery-slim.js │ │ ├── popper.js │ │ └── popper.min.js.map │ ├── templates │ ├── add-todo.html │ ├── edit-todo.html │ ├── home.html │ ├── layout.html │ ├── login.html │ ├── navbar.html │ ├── register.html │ └── todo.html │ └── test │ ├── .DS_Store │ ├── __init__.py │ ├── test_admin.py │ ├── test_auth.py │ ├── test_example.py │ ├── test_main.py │ ├── test_todos.py │ ├── test_users.py │ └── utils.py ├── PythonRefresher ├── Assignment (Comments Variables) │ └── assignment.py ├── Boolean and Operators │ └── BooleanAndOperators.py ├── Comments │ └── Comments.py ├── Dictionaries Assignment │ └── DictionaryAssignment.py ├── Dictionaries │ └── Dictionary.py ├── Functions Assignment │ └── FunctionAssignment.py ├── Functions │ └── Functions.py ├── IF Else Assignment │ └── IfElseAssignment.py ├── If Else │ └── IfElse.py ├── Imports │ ├── __pycache__ │ │ └── grade_average_service.cpython-39.pyc │ ├── grade_average_service.py │ ├── homework_grades.py │ └── standardlib.py ├── Inheritance │ └── StudentInheritance.py ├── Lists Assignment │ └── ListsAssignment.py ├── Lists │ └── Lists.py ├── Loops Assignment │ └── LoopsAssignment.py ├── Loops │ └── ForAndWhileLoops.py ├── OOP │ ├── 1. OOP │ │ ├── Enemy.py │ │ └── main.py │ ├── 2. OOP │ │ ├── Enemy.py │ │ └── main.py │ ├── 3. OOP │ │ ├── Enemy.py │ │ ├── Ogre.py │ │ ├── Zombie.py │ │ └── main.py │ ├── 4. OOP │ │ ├── Enemy.py │ │ ├── Ogre.py │ │ ├── Zombie.py │ │ └── main.py │ ├── 4B. Polymorphism Overview │ │ ├── Animal.py │ │ ├── Bird.py │ │ ├── Dog.py │ │ └── Main.py │ ├── 5. OOP │ │ ├── Enemy.py │ │ ├── Ogre.py │ │ ├── Zombie.py │ │ └── main.py │ ├── 6. OOP │ │ ├── Enemy.py │ │ ├── Hero.py │ │ ├── Ogre.py │ │ ├── Weapon.py │ │ ├── Zombie.py │ │ └── main.py │ └── 6B. Composition Overview │ │ ├── Engine.py │ │ ├── Main.py │ │ └── Vehicle.py ├── README.md ├── Sets and Tuples │ └── SetsAndTuples.py ├── String Assignment │ └── StringAssignment.py ├── String Formatting │ └── StringFormatting.py ├── User Input │ └── UserInput.py └── Variables │ └── Variables.py ├── README.md └── requirements.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/.gitignore -------------------------------------------------------------------------------- /Database Scripts/MySQLScript.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Database Scripts/MySQLScript.sql -------------------------------------------------------------------------------- /Database Scripts/PostgreSQLScript.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Database Scripts/PostgreSQLScript.sql -------------------------------------------------------------------------------- /Project 1/books.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 1/books.py -------------------------------------------------------------------------------- /Project 2/books2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 2/books2.py -------------------------------------------------------------------------------- /Project 3.5/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 3.5/.DS_Store -------------------------------------------------------------------------------- /Project 3.5/TodoApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 3.5/TodoApp/.DS_Store -------------------------------------------------------------------------------- /Project 3.5/TodoApp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Project 3.5/TodoApp/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 3.5/TodoApp/alembic.ini -------------------------------------------------------------------------------- /Project 3.5/TodoApp/alembic/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /Project 3.5/TodoApp/alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 3.5/TodoApp/alembic/env.py -------------------------------------------------------------------------------- /Project 3.5/TodoApp/alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 3.5/TodoApp/alembic/script.py.mako -------------------------------------------------------------------------------- /Project 3.5/TodoApp/alembic/versions/aeff25f89db0_create_phone_number_for_user_col.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 3.5/TodoApp/alembic/versions/aeff25f89db0_create_phone_number_for_user_col.py -------------------------------------------------------------------------------- /Project 3.5/TodoApp/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 3.5/TodoApp/database.py -------------------------------------------------------------------------------- /Project 3.5/TodoApp/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 3.5/TodoApp/main.py -------------------------------------------------------------------------------- /Project 3.5/TodoApp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 3.5/TodoApp/models.py -------------------------------------------------------------------------------- /Project 3.5/TodoApp/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Project 3.5/TodoApp/routers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 3.5/TodoApp/routers/admin.py -------------------------------------------------------------------------------- /Project 3.5/TodoApp/routers/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 3.5/TodoApp/routers/auth.py -------------------------------------------------------------------------------- /Project 3.5/TodoApp/routers/todos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 3.5/TodoApp/routers/todos.py -------------------------------------------------------------------------------- /Project 3.5/TodoApp/routers/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 3.5/TodoApp/routers/users.py -------------------------------------------------------------------------------- /Project 3/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 3/.DS_Store -------------------------------------------------------------------------------- /Project 3/TodoApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 3/TodoApp/.DS_Store -------------------------------------------------------------------------------- /Project 3/TodoApp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Project 3/TodoApp/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 3/TodoApp/database.py -------------------------------------------------------------------------------- /Project 3/TodoApp/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 3/TodoApp/main.py -------------------------------------------------------------------------------- /Project 3/TodoApp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 3/TodoApp/models.py -------------------------------------------------------------------------------- /Project 3/TodoApp/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Project 3/TodoApp/routers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 3/TodoApp/routers/admin.py -------------------------------------------------------------------------------- /Project 3/TodoApp/routers/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 3/TodoApp/routers/auth.py -------------------------------------------------------------------------------- /Project 3/TodoApp/routers/todos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 3/TodoApp/routers/todos.py -------------------------------------------------------------------------------- /Project 3/TodoApp/routers/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 3/TodoApp/routers/users.py -------------------------------------------------------------------------------- /Project 4/TodoApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 4/TodoApp/.DS_Store -------------------------------------------------------------------------------- /Project 4/TodoApp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Project 4/TodoApp/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 4/TodoApp/alembic.ini -------------------------------------------------------------------------------- /Project 4/TodoApp/alembic/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /Project 4/TodoApp/alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 4/TodoApp/alembic/env.py -------------------------------------------------------------------------------- /Project 4/TodoApp/alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 4/TodoApp/alembic/script.py.mako -------------------------------------------------------------------------------- /Project 4/TodoApp/alembic/versions/aeff25f89db0_create_phone_number_for_user_col.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 4/TodoApp/alembic/versions/aeff25f89db0_create_phone_number_for_user_col.py -------------------------------------------------------------------------------- /Project 4/TodoApp/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 4/TodoApp/database.py -------------------------------------------------------------------------------- /Project 4/TodoApp/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 4/TodoApp/main.py -------------------------------------------------------------------------------- /Project 4/TodoApp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 4/TodoApp/models.py -------------------------------------------------------------------------------- /Project 4/TodoApp/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Project 4/TodoApp/routers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 4/TodoApp/routers/admin.py -------------------------------------------------------------------------------- /Project 4/TodoApp/routers/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 4/TodoApp/routers/auth.py -------------------------------------------------------------------------------- /Project 4/TodoApp/routers/todos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 4/TodoApp/routers/todos.py -------------------------------------------------------------------------------- /Project 4/TodoApp/routers/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 4/TodoApp/routers/users.py -------------------------------------------------------------------------------- /Project 4/TodoApp/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Project 4/TodoApp/test/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 4/TodoApp/test/test_admin.py -------------------------------------------------------------------------------- /Project 4/TodoApp/test/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 4/TodoApp/test/test_auth.py -------------------------------------------------------------------------------- /Project 4/TodoApp/test/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 4/TodoApp/test/test_example.py -------------------------------------------------------------------------------- /Project 4/TodoApp/test/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 4/TodoApp/test/test_main.py -------------------------------------------------------------------------------- /Project 4/TodoApp/test/test_todos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 4/TodoApp/test/test_todos.py -------------------------------------------------------------------------------- /Project 4/TodoApp/test/test_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 4/TodoApp/test/test_users.py -------------------------------------------------------------------------------- /Project 4/TodoApp/test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 4/TodoApp/test/utils.py -------------------------------------------------------------------------------- /Project 5/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/.DS_Store -------------------------------------------------------------------------------- /Project 5/TodoApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/.DS_Store -------------------------------------------------------------------------------- /Project 5/TodoApp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Project 5/TodoApp/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/alembic.ini -------------------------------------------------------------------------------- /Project 5/TodoApp/alembic/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /Project 5/TodoApp/alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/alembic/env.py -------------------------------------------------------------------------------- /Project 5/TodoApp/alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/alembic/script.py.mako -------------------------------------------------------------------------------- /Project 5/TodoApp/alembic/versions/aeff25f89db0_create_phone_number_for_user_col.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/alembic/versions/aeff25f89db0_create_phone_number_for_user_col.py -------------------------------------------------------------------------------- /Project 5/TodoApp/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/database.py -------------------------------------------------------------------------------- /Project 5/TodoApp/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/main.py -------------------------------------------------------------------------------- /Project 5/TodoApp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/models.py -------------------------------------------------------------------------------- /Project 5/TodoApp/routers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/routers/.DS_Store -------------------------------------------------------------------------------- /Project 5/TodoApp/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Project 5/TodoApp/routers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/routers/admin.py -------------------------------------------------------------------------------- /Project 5/TodoApp/routers/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/routers/auth.py -------------------------------------------------------------------------------- /Project 5/TodoApp/routers/todos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/routers/todos.py -------------------------------------------------------------------------------- /Project 5/TodoApp/routers/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/routers/users.py -------------------------------------------------------------------------------- /Project 5/TodoApp/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/static/.DS_Store -------------------------------------------------------------------------------- /Project 5/TodoApp/static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/static/css/base.css -------------------------------------------------------------------------------- /Project 5/TodoApp/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/static/css/bootstrap.css -------------------------------------------------------------------------------- /Project 5/TodoApp/static/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/static/js/base.js -------------------------------------------------------------------------------- /Project 5/TodoApp/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/static/js/bootstrap.js -------------------------------------------------------------------------------- /Project 5/TodoApp/static/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/static/js/bootstrap.js.map -------------------------------------------------------------------------------- /Project 5/TodoApp/static/js/jquery-slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/static/js/jquery-slim.js -------------------------------------------------------------------------------- /Project 5/TodoApp/static/js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/static/js/popper.js -------------------------------------------------------------------------------- /Project 5/TodoApp/static/js/popper.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/static/js/popper.min.js.map -------------------------------------------------------------------------------- /Project 5/TodoApp/templates/add-todo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/templates/add-todo.html -------------------------------------------------------------------------------- /Project 5/TodoApp/templates/edit-todo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/templates/edit-todo.html -------------------------------------------------------------------------------- /Project 5/TodoApp/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/templates/home.html -------------------------------------------------------------------------------- /Project 5/TodoApp/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/templates/layout.html -------------------------------------------------------------------------------- /Project 5/TodoApp/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/templates/login.html -------------------------------------------------------------------------------- /Project 5/TodoApp/templates/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/templates/navbar.html -------------------------------------------------------------------------------- /Project 5/TodoApp/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/templates/register.html -------------------------------------------------------------------------------- /Project 5/TodoApp/templates/todo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/templates/todo.html -------------------------------------------------------------------------------- /Project 5/TodoApp/test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/test/.DS_Store -------------------------------------------------------------------------------- /Project 5/TodoApp/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Project 5/TodoApp/test/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/test/test_admin.py -------------------------------------------------------------------------------- /Project 5/TodoApp/test/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/test/test_auth.py -------------------------------------------------------------------------------- /Project 5/TodoApp/test/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/test/test_example.py -------------------------------------------------------------------------------- /Project 5/TodoApp/test/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/test/test_main.py -------------------------------------------------------------------------------- /Project 5/TodoApp/test/test_todos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/test/test_todos.py -------------------------------------------------------------------------------- /Project 5/TodoApp/test/test_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/test/test_users.py -------------------------------------------------------------------------------- /Project 5/TodoApp/test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/Project 5/TodoApp/test/utils.py -------------------------------------------------------------------------------- /PythonRefresher/Assignment (Comments Variables)/assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/Assignment (Comments Variables)/assignment.py -------------------------------------------------------------------------------- /PythonRefresher/Boolean and Operators/BooleanAndOperators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/Boolean and Operators/BooleanAndOperators.py -------------------------------------------------------------------------------- /PythonRefresher/Comments/Comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/Comments/Comments.py -------------------------------------------------------------------------------- /PythonRefresher/Dictionaries Assignment/DictionaryAssignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/Dictionaries Assignment/DictionaryAssignment.py -------------------------------------------------------------------------------- /PythonRefresher/Dictionaries/Dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/Dictionaries/Dictionary.py -------------------------------------------------------------------------------- /PythonRefresher/Functions Assignment/FunctionAssignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/Functions Assignment/FunctionAssignment.py -------------------------------------------------------------------------------- /PythonRefresher/Functions/Functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/Functions/Functions.py -------------------------------------------------------------------------------- /PythonRefresher/IF Else Assignment/IfElseAssignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/IF Else Assignment/IfElseAssignment.py -------------------------------------------------------------------------------- /PythonRefresher/If Else/IfElse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/If Else/IfElse.py -------------------------------------------------------------------------------- /PythonRefresher/Imports/__pycache__/grade_average_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/Imports/__pycache__/grade_average_service.cpython-39.pyc -------------------------------------------------------------------------------- /PythonRefresher/Imports/grade_average_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/Imports/grade_average_service.py -------------------------------------------------------------------------------- /PythonRefresher/Imports/homework_grades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/Imports/homework_grades.py -------------------------------------------------------------------------------- /PythonRefresher/Imports/standardlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/Imports/standardlib.py -------------------------------------------------------------------------------- /PythonRefresher/Inheritance/StudentInheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/Inheritance/StudentInheritance.py -------------------------------------------------------------------------------- /PythonRefresher/Lists Assignment/ListsAssignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/Lists Assignment/ListsAssignment.py -------------------------------------------------------------------------------- /PythonRefresher/Lists/Lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/Lists/Lists.py -------------------------------------------------------------------------------- /PythonRefresher/Loops Assignment/LoopsAssignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/Loops Assignment/LoopsAssignment.py -------------------------------------------------------------------------------- /PythonRefresher/Loops/ForAndWhileLoops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/Loops/ForAndWhileLoops.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/1. OOP/Enemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/1. OOP/Enemy.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/1. OOP/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/1. OOP/main.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/2. OOP/Enemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/2. OOP/Enemy.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/2. OOP/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/2. OOP/main.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/3. OOP/Enemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/3. OOP/Enemy.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/3. OOP/Ogre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/3. OOP/Ogre.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/3. OOP/Zombie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/3. OOP/Zombie.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/3. OOP/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/3. OOP/main.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/4. OOP/Enemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/4. OOP/Enemy.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/4. OOP/Ogre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/4. OOP/Ogre.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/4. OOP/Zombie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/4. OOP/Zombie.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/4. OOP/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/4. OOP/main.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/4B. Polymorphism Overview/Animal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/4B. Polymorphism Overview/Animal.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/4B. Polymorphism Overview/Bird.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/4B. Polymorphism Overview/Bird.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/4B. Polymorphism Overview/Dog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/4B. Polymorphism Overview/Dog.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/4B. Polymorphism Overview/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/4B. Polymorphism Overview/Main.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/5. OOP/Enemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/5. OOP/Enemy.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/5. OOP/Ogre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/5. OOP/Ogre.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/5. OOP/Zombie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/5. OOP/Zombie.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/5. OOP/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/5. OOP/main.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/6. OOP/Enemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/6. OOP/Enemy.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/6. OOP/Hero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/6. OOP/Hero.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/6. OOP/Ogre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/6. OOP/Ogre.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/6. OOP/Weapon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/6. OOP/Weapon.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/6. OOP/Zombie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/6. OOP/Zombie.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/6. OOP/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/6. OOP/main.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/6B. Composition Overview/Engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/6B. Composition Overview/Engine.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/6B. Composition Overview/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/6B. Composition Overview/Main.py -------------------------------------------------------------------------------- /PythonRefresher/OOP/6B. Composition Overview/Vehicle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/OOP/6B. Composition Overview/Vehicle.py -------------------------------------------------------------------------------- /PythonRefresher/README.md: -------------------------------------------------------------------------------- 1 | "# PythonRefresher" 2 | -------------------------------------------------------------------------------- /PythonRefresher/Sets and Tuples/SetsAndTuples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/Sets and Tuples/SetsAndTuples.py -------------------------------------------------------------------------------- /PythonRefresher/String Assignment/StringAssignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/String Assignment/StringAssignment.py -------------------------------------------------------------------------------- /PythonRefresher/String Formatting/StringFormatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/String Formatting/StringFormatting.py -------------------------------------------------------------------------------- /PythonRefresher/User Input/UserInput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/User Input/UserInput.py -------------------------------------------------------------------------------- /PythonRefresher/Variables/Variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/PythonRefresher/Variables/Variables.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingwithroby/FastAPI-The-Complete-Course/HEAD/requirements.txt --------------------------------------------------------------------------------