


Someone asked on Zhihu, which web framework of Python has a short learning cycle and low learning cost?
Many people recommend Flask, an old lightweight web framework, which is indeed the first choice for beginners. I saw FastApi on Github these days and thought it was more lightweight than Flask.
FastApi is an Internet celebrity web framework that has suddenly emerged in the past two years and is suitable for novices to get started quickly. .
In general, FastAPI has three advantages: fast, simple, and powerful.
Its self-label is:
FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.6 based on standard Python type hints.
Why do we say fast, simple and strong?
- First of all, FastApi takes advantage of asynchronous and lightweight features, and uses strong typing, which greatly improves performance and is even comparable to GO and NodeJS;
- Secondly, it can quickly program and artificially Few bugs, low debugging costs, and simple design can increase the web construction speed by 2-3 times, making it very suitable for novices to operate.
What are the similarities and differences between it and Django?
Compared with Django, FastAPI is a lightweight web framework.
Django is battery included. Although it is troublesome to configure, it comes with many functions by default, including useful ORM and migration tools, as well as many security middleware, etc. There are also template systems, static resource management systems, etc. For general business websites, Django can be used out of the box.
FastAPI is very lightweight. It comes with nothing, no ORM, no migration, no middleware, nothing. This is a disadvantage as well as an advantage.
Case
main.py:
from typing import Optional from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"} @app.get("/items/{item_id}") def read_item(item_id: int, q: Optional[str] = None): return {"item_id": item_id, "q": q}
Run the server:
$ uvicorn main:app --reload INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) INFO: Started reloader process [28720] INFO: Started server process [28722] INFO: Waiting for application startup. INFO: Application startup complete.
Enter http://127.0.0.1:8000/docs, you will see Automatically generated interactive API documentation.
Learning documentation: https://fastapi.tiangolo.com
GIthub address: https://github .com/tiangolo/fastapi
The above is the detailed content of Which Python web framework has a short learning cycle and low learning cost?. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
