Это пробный урок. Оформите подписку, чтобы получить доступ ко всем материалам курса. Премиум

  1. Урок 1. 00:01:03
    Welcome to Modern APIs with FastAPI
  2. Урок 2. 00:03:25
    Why FastAPI?
  3. Урок 3. 00:02:05
    Modern Python and APIs
  4. Урок 4. 00:03:14
    Fastapi vs. x
  5. Урок 5. 00:02:30
    The big ideas covered in the course
  6. Урок 6. 00:00:49
    Student prerequisites
  7. Урок 7. 00:00:39
    Your instructor: Michael Kennedy
  8. Урок 8. 00:00:43
    Get the full story on FastAPI
  9. Урок 9. 00:02:18
    Python version
  10. Урок 10. 00:01:41
    Recommended editor
  11. Урок 11. 00:00:53
    Git the source code
  12. Урок 12. 00:00:50
    Introducing our first API
  13. Урок 13. 00:03:49
    Project setup
  14. Урок 14. 00:05:17
    The most basic API
  15. Урок 15. 00:00:46
    Concept: A minimal API endpoint
  16. Урок 16. 00:03:09
    Know your HTTP verbs
  17. Урок 17. 00:02:15
    Know your HTTP status codes
  18. Урок 18. 00:03:00
    Passing data to the API
  19. Урок 19. 00:01:12
    Concept: Passing data to the API
  20. Урок 20. 00:05:34
    Responding to requests
  21. Урок 21. 00:01:29
    Using specialized responses
  22. Урок 22. 00:01:23
    Concept: Returning errors
  23. Урок 23. 00:02:21
    A home page, of sorts
  24. Урок 24. 00:03:06
    Modern language features
  25. Урок 25. 00:03:35
    Type hints motivation
  26. Урок 26. 00:02:41
    Adding type hints
  27. Урок 27. 00:01:17
    Concept: Type hints
  28. Урок 28. 00:02:30
    Non-async web scraper
  29. Урок 29. 00:04:08
    Async web scraper
  30. Урок 30. 00:02:26
    Concept: An async method
  31. Урок 31. 00:05:06
    WSGI and ASGI servers
  32. Урок 32. 00:06:20
    Model validation, the hard way
  33. Урок 33. 00:04:59
    Model validation, the Pydantic way
  34. Урок 34. 00:00:41
    Concept: Pydantic models
  35. Урок 35. 00:02:08
    Introducing our main API
  36. Урок 36. 00:02:36
    Creating the weather project
  37. Урок 37. 00:06:40
    Rendering HTML templates
  38. Урок 38. 00:01:17
    Concept: Rendering HTML templates
  39. Урок 39. 00:02:44
    Static files
  40. Урок 40. 00:07:53
    Partitioning with routers
  41. Урок 41. 00:01:21
    Concept: Partitioning with routers
  42. Урок 42. 00:03:30
    Weather API signature
  43. Урок 43. 00:03:27
    Pydantic models
  44. Урок 44. 00:03:29
    Open Weather data info
  45. Урок 45. 00:04:39
    Setting the API key (keeping secrets safe)
  46. Урок 46. 00:04:05
    Calling open weather map synchronously
  47. Урок 47. 00:03:31
    Making an async API method
  48. Урок 48. 00:01:13
    Concept: Async API methods
  49. Урок 49. 00:05:59
    Faster with caching data
  50. Урок 50. 00:01:13
    Concept: Caching data
  51. Урок 51. 00:05:09
    Error responses
  52. Урок 52. 00:02:14
    Concept: Converting errors to responses
  53. Урок 53. 00:01:13
    Inbound data introduction
  54. Урок 54. 00:07:44
    Weather report data layer
  55. Урок 55. 00:03:21
    Viewing all reports via the API
  56. Урок 56. 00:03:41
    Adding a weather report via the API
  57. Урок 57. 00:02:20
    Calling the POST method with RESTful tools
  58. Урок 58. 00:01:32
    Playing nice with status codes
  59. Урок 59. 00:01:35
    Concept: Submitted a weather report
  60. Урок 60. 00:05:52
    Building a report client app
  61. Урок 61. 00:04:23
    Showing recent events on the home page
  62. Урок 62. 00:04:36
    Automatic documentation with FastAPI and Swagger/OpenAPI
  63. Урок 63. 00:00:47
    Deployment introduction
  64. Урок 64. 00:05:50
    Surveying some hosting options
  65. Урок 65. 00:03:51
    Create a cloud server
  66. Урок 66. 00:02:04
    Connecting to and patching our server
  67. Урок 67. 00:03:18
    Server topology with Gunicorn
  68. Урок 68. 00:01:11
    Adding ohmyzsh
  69. Урок 69. 00:03:37
    Preparing to run FastAPI on Ubuntu
  70. Урок 70. 00:04:16
    Getting the source code from GitHub
  71. Урок 71. 00:01:13
    venv forever
  72. Урок 72. 00:04:13
    Gunicorn as Systemd unit
  73. Урок 73. 00:03:30
    Installing and running nginx
  74. Урок 74. 00:02:05
    Adding SSL for HTTPS on our API
  75. Урок 75. 00:00:27
    You've made it
  76. Урок 76. 00:00:55
    Review: A minimal API endpoint
  77. Урок 77. 00:01:21
    Review: Type hints
  78. Урок 78. 00:01:33
    Review: Pydantic objects
  79. Урок 79. 00:00:54
    Review: async view methods
  80. Урок 80. 00:01:02
    Review: Rendering templates
  81. Урок 81. 00:01:18
    Review: Status codes and responses
  82. Урок 82. 00:01:30
    Review: Modifying data through the API
  83. Урок 83. 00:01:19
    Review: Deployment
  84. Урок 84. 00:00:25
    Thanks and goodbye