Python Resources - Basic Python, ML, DataScience, BigData
2.46K subscribers
14 photos
3 files
243 links
You can find all kinds of resources related to Python, ML, DataScience and BigData.
Resources — »»» @python_resources_iGnani
Projects — »»» @python_projects_repository
Questions— »»» @python_interview_questions
Forum — »»» @python_programmers_club
Download Telegram
011: Using Nested Models in FastAPI - Python

This
is the 11th video of the FastAPI series, a web framework for Python to create RestAPI's.

In our previous videos, we saw how to pass simple data types or a simple model as a parameter. In this video you will learn:
* How-to use List, Set & Dict provided by the Typing module.
* How-to pass deeply nested models as parameters

#video #videotutorial #python #FastAPI
012 : Using Special Datatypes In FastAPI - Python

This is the 12th video of the FastAPI series, a web framework for Python to create RestAPI's.

In our previous videos, we saw how to pass simple data types like string, int, float and we also tried with special datatype httpurl. In this video, I will be covering a few more of these:

* Datetime, Date, Time & Timedelta
* Color type
* PaymentCardNumber & PaymentCardBrand

#video #videotutorial #python #FastAPI
002 : FastAPI - Getting Started - Python

🌟

Getting Started with
FastAPI.
This video show you on how to get started in building a simple FastAPI based RestAPI application in Python. It covers
* Install fastapi, and a ASGI server such as uvicorn
* Create our good old Hello World sample using FastAPI
* Running the application in dev mode using both through command line and PyCharm.
* Finally browsing the RestAPI that we created and also checking out the OpenAPI documents that were generated automatically for us.

#python #restapi #webFramework #FastAPI #tutorial #videotutorial
​​003 : FastAPI - Basics - Python

🌟

Getting Started with
FastAPI.
 video takes you step by step in explaining the simplest FastAPI application that we created in our previous video.
- Import FastAPI.
- Create an app instance.
- A path operation decorator (like @app.get("/")).
- A path operation function - async def root()
- And finally Run the development server uvicorn from command line.

#python #restapi #webFramework #FastAPI #tutorial #videotutorial