FastAPI+React全栈开发12 搭建FastAPI开发环境

Chapter03 Getting Started with FastAPI

12 Technical requirements

FastAPI+React全栈开发12 搭建FastAPI开发环境

For this chapter, you will need the following:

  • Python setup
  • Virtual environments
  • Code editor and plugins
  • Terminal
  • REST clients

对于这一章,你需要以下的东西:

  • Python设置
  • 虚拟环境
  • 代码编辑器和插件
  • 终端
  • REST客户端

Let’s take a look at them in more detail.

让我们更详细地看看它们。

Python setup

If you do not have Python installed, now is a good time to do so. Head over to the Python download site (https://www.python.org/downloads) and download the installer for your operating system. The Python website contains excellent documentation for all the major operating systems. In this book, I will be using the latest, version, which, at the time of writing, is 3.10.1. Make sure that you install or upgrade to one of the latest Python versions. FastAPI relies heavily on Python hints and annotations, so any version later than 3.6 should work. Another important thing to check is that the Python version that you have installed is reachable or, even better, the default version. You can check this by typing python in your terminal of choice and checking the version.

如果您没有安装Python,现在是安装Python的好时机。转到Python下载站点(https://www.python.org/downloads)并为您的操作系统下载安装程序。Python网站包含所有主要操作系统的优秀文档。在本书中,我将使用最新的版本,在撰写本文时,它是3.10.1。请确保安装或升级到最新的Python版本之一。FastAPI严重依赖于Python提示和注解,因此3.6以后的任何版本都可以使用。另一件需要检查的重要事情是,您安装的Python版本是否可访问,或者最好是默认版本。您可以通过在您选择的终端中输入python并检查版本来检查这一点。

I will not describe how to install Python on your platform since there are numberous guides online that certainly cover your setup. You can also install a data science-friendly environment such as Anaconda(https://www.anaconda.com/products/distribution) if that is something you are already using or are comfortable with.

我不会描述如何在您的平台上安装Python,因为网上有许多指南肯定涵盖了您的设置。您还可以安装一个数据科学友好的环境,如Anaconda(https://www.anaconda.com/products/distribution),如果您已经在使用或对它感到满意的话。

注意:这里我更推荐使用Anaconda配置Python环境,具体可以参考我的这篇博客:《用Anaconda创建Python指定版本的虚拟环境》 https://blog.csdn.net/qq_37703224/article/details/136666316

Virtual environments

We must create an application directory called FARM. Inside it, we will create a virtual environment. A virtual environment is an isolated Python environment that includes a copy of the Python interpreter, which we can use to install the desired packages and only the needed packages, in our case, FastAPI, the Uvicorn web server, and additional packages that we will use later, as well as FastAPI dependencies such as Pydantic.

我们必须创建一个名为FARM的应用程序目录。在里面,我们将创建一个虚拟环境。虚拟环境是一个独立的Python环境,包括Python解释器的副本,我们可以使用它来安装所需的包,并且只安装所需的包,在我们的例子中,FastAPI, Uvicorn web服务器,以及我们稍后将使用的其他包,以及FastAPI依赖项,如Pydantic。

You can think of a virtual environment as a directory tree of Python executable files and packages that allow us to have different versions of Python and the various third-paty packages together on a single machine, without them interfering with each other.

您可以将虚拟环境想象成Python可执行文件和包的目录树,它允许我们在一台机器上同时拥有不同版本的Python和各种第三方包,而不会相互干扰。

There are several excellent yet opinionated approaches to creating virtual environments such as pipenv(https://pipenv.pypa.io/en/latest/), pyenv(https://github.com/pyenv/pyenv), and others. I will stick to the simplest. After installing Python, you should head to your apps directory and, ina command prompt or your choice, run the following command.

创建虚拟环境有几种优秀但固执己见的方法,如pipenv(https://pipenv.pypa.io/en/latest/)、pyenv(https://github.com/pyenv/pyenv)等。我会坚持用最简单的。安装Python后,你应该进入你的apps目录,在命令提示符下运行以下命令。

python -m venv venv

This command should download a new Python executable and create a new directory named venv, it is the second argument in the command, so this can get a bit confusing. You can name it differently, but like many other things, this is a useful convention(readymade .gitignore files, for instance, often include venv to help you avoid putting the virtual envionment folder under version control). Now, we should check that we can activate the newly created environment. In the venv folder, navigate to the Scripts folder and type activate. The prompt should change and be prepended with the name of the active environment in parenthesis, that is $(venv).

这个命令应该下载一个新的Python可执行文件,并创建一个名为venv的新目录,它是命令中的第二个参数,所以这可能会让人有点困惑。您可以将其命名为不同的名称,但与许多其他内容一样,这是一个有用的约定(例如,现成的.gitignore文件通常包含venv,以帮助您避免将虚拟环境文件夹置于版本控制之下)。现在,我们应该检查是否可以激活新创建的环境。在venv文件夹中,导航到Scripts文件夹并键入activate。提示符应该改变,并在括号中加上活动环境的名称,即$(venv)。

You should also have Git installed. Head over to https://git-scm.com/downloads and just follow the instructions for your operating system.

您还应该安装Git。登录https://git-scm.com/downloads,按照操作系统的说明操作即可。

Apart from a Python environment and Git, you should have installed a shell program, if you are working on Linux or Mac, you should be fine. On Windows, you can use Windows, you can use Windows PowerShell or something such as Commander(https://cmder.app), a console emulator for Windows that has some nice features baked in.

除了Python环境和Git,你应该安装一个shell程序,如果你在Linux或Mac上工作,你应该很好。在Windows上,您可以使用Windows,也可以使用Windows PowerShell或Commander(https://cmder.app)之类的东西,这是一个Windows控制台模拟器,内置了一些不错的功能。

Code Editors

While there are many great code editors and integrated development environments(IDEs) for Python, I strongly recommend Visual Studio Code from Microsoft. Since its release in 2015, it has quickly become the most popular code editor, it is cross-platform, it provides a lot of integrated tools, such as an integrated terminal in which we can run our development server, it is pretty light weight, and it provides hundreds of plugins suitable for virtually any programming task that you may have to perform.

虽然有许多很棒的Python代码编辑器和集成开发环境(ide),但我强烈推荐微软的Visual Studio code。自2015年发布以来,它已经迅速成为最受欢迎的代码编辑器,它是跨平台的,它提供了很多集成工具,比如一个集成终端,我们可以在其中运行我们的开发服务器,它很轻,它提供了数百个插件,适用于几乎任何编程任务,你可能不得不执行。

Since we will be working with JavaScript, Python, React, and a bit of CSS for styling and running a couple of command-line processes along the way, I believe this is the easiest way to go.

因为我们将使用JavaScript、Python、React和一些CSS来进行样式化,并在此过程中运行一些命令行进程,所以我相信这是最简单的方法。

REST Clients

Finally, to be able to test our REST API, we need a REST client. Postman(https://www.postman.com/) is arguably the most sophiticated and customizable program for testing APIs, but there are several very viable alternatives. I prefer the simplicity of Insomnia(https://insomnia.rest/), a GUI REST client with a very clean and simple interface, ant HTTPie(https://httpie.io/), a command-line REST API client that allows us to quickly test our endpoints without leaving the shell. HTTPie provides other nice features such as an expressive and simple syntax, handling of forms and uploads, sessions, and so on. Moreover, HTTPie is probably the easiest REST client when it comes to installation, you can install hte Python version just like any other Python package, using pip or some other option, such as choco, apt(for Linux), brew, and so on.

最后,为了能够测试REST API,我们需要一个REST客户端。Postman(https://www.postman.com/)可以说是用于测试api的最复杂和最可定制的程序,但也有一些非常可行的替代方案。我更喜欢Insomnia(https://insomnia.rest/)和HTTPie(https://httpie.io/)的简单性,前者是一个GUI REST客户端,具有非常干净和简单的界面,后者是一个命令行REST API客户端,允许我们在不离开shell的情况下快速测试端点。HTTPie还提供了其他一些不错的特性,比如表达性强且简单的语法、表单和上传的处理、会话等等。此外,当涉及到安装时,HTTPie可能是最简单的REST客户端,您可以像安装任何其他Python包一样安装Python版本,使用pip或其他选项,如choco、apt(用于Linux)、brew等。

For our purposes, the easiest wa to install HTTPie is to activate the virtual environment that we will be using (cd into the venv directory, navigate to Lib/activate, and then activate it) and then insall HTTPie with pip, as follows.

出于我们的目的,安装HTTPie最简单的方法是激活我们将要使用的虚拟环境(cd进入venv目录,导航到Lib/activate,然后激活它),然后使用pip安装HTTPie,如下所示。

pip install httpie

Once it’s been installed, you can test HTTPie with the following command:

一旦它被安装,你可以用下面的命令测试HTTPie:

http GET "https://jsonplaceholder.typicode.com/todos/1"

If everything went well, you should have a pretty long output that starts with an HTTP/1.1 200 OK.

如果一切顺利,您应该有一个相当长的输出,以HTTP/1.1 200 OK开头。

In the previous command that we issued, you may be wondering what (venv) and the Greek letter Lambda mean. venv is just the name of our virtual environment and it means that it has been activated for the shell taht we are using (if you named it some other way, you would see a different name in parenthesis), while Lambda is the shell symbol used by Commander, my shell emulator. On Linux, Mac, or Windows PowerShell, you’ll get the standard > symbol. HTTPie makes it very easy to issue HTTP requests by simply adding POST for POST requests, payloads, form values, and so on.

在我们发布的上一个命令中,您可能想知道(venv)和希腊字母Lambda是什么意思。venv只是我们的虚拟环境的名称,它意味着它已经为我们正在使用的shell激活(如果您以其他方式命名它,您将在括号中看到不同的名称),而Lambda是shell模拟器Commander使用的shell符号。在Linux、Mac或Windows PowerShell上,你会得到标准的>符号。HTTPie通过简单地为POST请求、有效负载、表单值等添加POST,使发出HTTP请求变得非常容易。

Installing the necessary packages

After setting up the virtual environment, you should activate it and install the Python libraries required for our first simple application: FastAPI itself and Uviron.

在设置虚拟环境之后,您应该激活它并安装我们的第一个简单应用程序所需的Python库:FastAPI本身和Uviron。

FastAPI needs a server to run, by a server, I mean a pece of software specifically designed to serve web applications (or REST APIs!). FastAPI exposes an asynchronous server gateway interface (ASGI https://asgi.readthedocs.io/), compatible web application but doesn’t provide us with a built-in server, so a compatible Python solution is necessary.

FastAPI需要一个服务器来运行,这里的服务器指的是一个专门为web应用程序(或REST api)服务的软件。FastAPI公开了一个异步服务器网关接口(ASGI https://asgi.readthedocs.io/),兼容web应用程序,但没有为我们提供内置服务器,因此兼容的Python解决方案是必要的。

I will not get into the specifics of the ASGI specification, but the main takeaway is that it is an asynchronousinterface that enables async non-blocking applications, something that we want to make full use of our FastAPI capabilities. At the time of writing, the FastAPI documentation site lists three compatible Python ASGI compatible servers, Uvicorn, Hypercorn, and Daphne, but we will stick to the first one as it is the most widely used and is the recommended way to work with FastAPI. You can find lots of documentation online in case you get stuck, and it offers very high performance.

我不会深入讨论ASGI规范的细节,但主要的要点是,它是一个异步接口,支持异步非阻塞应用程序,我们希望充分利用我们的FastAPI功能。在撰写本文时,FastAPI文档网站列出了三个兼容的Python ASGI兼容服务器,Uvicorn, Hypercorn和Daphne,但我们将坚持使用第一个,因为它是最广泛使用的,并且是使用FastAPI的推荐方式。如果遇到困难,您可以在网上找到很多文档,而且它提供了非常高的性能。

To install our first two dependencies, make sure you are in your working directory with the desired virtual environment activated and install FastAPI and Uvicorn.

要安装前两个依赖项,请确保在工作目录中激活了所需的虚拟环境,并安装FastAPI和Uvicorn。

pip install fastapi uvicorn

Phew! This was a bit long, but now we have a decent Python coding environment that contains a shell, one or two REST clients, a great editor, and the coolest and hippest REST framework ready to rock. On the other hand, if you have ever developed a Django or Flask application, this should all be familiar groud.

唷!这有点长,但现在我们有了一个体面的Python编码环境,它包含一个shell、一两个REST客户端、一个很棒的编辑器,以及最酷、最时髦的REST框架。另一方面,如果您曾经开发过Django或Flask应用程序,那么这些内容应该都很熟悉。

Finally, let’s pick a folder or clone this book’s GitHub repository and activate a virtual environment(it is customary to create the environment in a folder named venv inside the working directory, but feel free to improvize and structure the code as you see fit). Later in this chapter, we will briefly discuss some options when it comes to structuring your FastAPI code, but for now, just make sure that you are in a folder and that your newly created virtual environment is activated.

最后,让我们选择一个文件夹或克隆本书的GitHub存储库,并激活一个虚拟环境(习惯上在工作目录内名为venv的文件夹中创建环境,但也可以随意修改和构建您认为合适的代码)。在本章的后面,我们将简要地讨论一些关于构建FastAPI代码的选项,但是现在,只要确保你在一个文件夹中,并且你新创建的虚拟环境是激活的。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/778177.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Day54:WEB攻防-XSS跨站Cookie盗取表单劫持网络钓鱼溯源分析项目平台框架

目录 XSS跨站-攻击利用-凭据盗取 XSS跨站-攻击利用-数据提交 XSS跨站-攻击利用-flash钓鱼 XSS跨站-攻击利用-溯源综合 知识点: 1、XSS跨站-攻击利用-凭据盗取 2、XSS跨站-攻击利用-数据提交 3、XSS跨站-攻击利用-网络钓鱼 4、XSS跨站-攻击利用-溯源综合 漏洞原理…

OpenCV摄像头和视频处理

OpenCV视频捕获 一、引言 视频捕获是计算机视觉中常见的一项任务,它涉及从视频文件或摄像头实时流中读取帧,并对其进行处理和分析。OpenCV(开源计算机视觉库)为视频捕获提供了强大的支持,使得这一任务变得简单高效。…

计算机网络链路层

数据链路 链路是从一个节点到相邻节点之间的物理线路(有线或无线) 数据链路是指把实现协议的软件和硬件加到对应链路上。帧是点对点信道的数据链路层的协议数据单元。 点对点信道 通信的主要步骤: 节点a的数据链路层将网络层交下来的包添…

深度学习pytorch——卷积神经网络(持续更新)

计算机如何解析图片? 在计算机的眼中,一张灰度图片,就是许多个数字组成的二维矩阵,每个数字就是此点的像素值(图-1)。在存储时,像素值通常位于[0, 255]区间,在深度学习中&#xff0…

重写、重定义(隐藏)、重载区别

1、重载是在同一个作用域中比如在同一个类中、函数名一样参数不同 2、重写: 满足多态的条件:(1)虚函数前面带有virtual函数名、返回值、参数相同(2)重写函数体 3、重定义也叫隐藏、不满足重写的就是重定义

素描石膏像的眼睛:传神的关键

素描石膏像的眼睛:如何在素描绘画中画出眼睛的传神?关键要点是什么 在素描石膏像的眼睛时,要画出传神的效果,关键要点包括以下几个方面: 理解眼睛的结构:首先,需要理解眼睛的基本结构&#xff…

SlerfTools:简化操作,激发Solana生态创新潜能

在区块链世界的快速演变中,Solana生态系统以其独特的高性能吸引了全球的目光。然而,随着生态系统的蓬勃发展,用户和开发者面临的挑战也日渐增多。正是在这样的背景下,一个名为SlerfTools的新星项目应运而生,它承诺将为Solana带来一场革命性的变革。 项目的诞生 SlerfTools并非…

前端学习-CSS基础-Day3

一、CSS三大特性 1.1层叠性 相同选择器给设置相同的样式,此时一个样式就会覆盖(层叠)另一个冲突的样式。层叠性主要解决样式冲突的问题 层叠性原则: 1.样式冲突,遵循的原则是就近原则,哪个样式离结构近&a…

【QT+QGIS跨平台编译】043:【libprotobuf-lite+Qt跨平台编译】(一套代码、一套框架,跨平台编译)

点击查看专栏目录 文章目录 一、libprotobuf-lite介绍二、文件下载三、文件分析四、pro文件五、编译实践一、libprotobuf-lite介绍 libprotobuf-lite 是 Protocol Buffers 的 C++ 轻量级运行时库,专门设计用于在资源受限的环境下使用。与标准的 libprotobuf(Protocol Buffers…

数据结构——AVL树详解

一、AVL树的定义 AVL全称叫做平衡二叉搜索(搜索)树,两位俄罗斯的数学家G.M.Adelson-Velskii 和E.M.Landis在1962年发明了一种方法: 当向二叉搜索树中插入新结点后,如果能保证每个结点的左右子树高度之差的绝对值不超…

最近公共祖先(lca)倍增算法【模板】

P3379 【模板】最近公共祖先&#xff08;LCA&#xff09; - 洛谷 | 计算机科学教育新生态 (luogu.com.cn) #include<bits/stdc.h> #include<cstdio> using namespace std; const int N5e5100; const int inf0x3f3f3f; int n,m,s; vector<int>g[N]; int dep[…

halcon例程学习——ball.hdev

dev_update_window (off) dev_close_window () dev_open_window (0, 0, 728, 512, black, WindowID) read_image (Bond, die/die_03) dev_display (Bond) set_display_font (WindowID, 14, mono, true, false) *自带的 提示继续 disp_continue_message (WindowID, black, true)…

目标检测的相关模型图:YOLO系列和RCNN系列

目标检测的相关模型图&#xff1a;YOLO系列和RCNN系列 前言YOLO系列的图展示YOLOpassthroughYOLO2YOLO3YOLO4YOLO5 RCNN系列的图展示有关目标检测发展的 前言 最近好像大家也都在写毕业论文&#xff0c;前段时间跟朋友聊天&#xff0c;突然想起自己之前写画了一些关于YOLO、Fa…

货币系统(闫氏DP分析法)

题目描述&#xff1a; 给定 V 种货币&#xff08;单位&#xff1a;元&#xff09;&#xff0c;每种货币使用的次数不限。 不同种类的货币&#xff0c;面值可能是相同的。 现在&#xff0c;要你用这 V 种货币凑出 N 元钱&#xff0c;请问共有多少种不同的凑法。 输入格式&am…

C语言 C6031:返回值被忽略:“scanf“ 问题解决

我们在代码中 直接使用 scanf 就会出现这个错误 在最上面 加上 #define _CRT_SECURE_NO_WARNINGS//禁用安全函数警告 #pragma warning(disable:6031)//禁用 6031 的安全警告即可正常运行

llama-index 结合chatglm3-6B 利用RAG 基于文档智能问答

简介 llamaindex结合chatglm3使用 import os import torch from llama_index.core import VectorStoreIndex, ServiceContext from llama_index.core.callbacks import CallbackManager from llama_index.core.llms.callbacks import llm_completion_callback from llama_ind…

ArcGis Pro Python工具箱教程 03 工具箱中工具自定义

ArcGis Pro Python工具箱教程 03 工具箱中工具自定义 用于定义工作工具类的方法 工具方法必选或可选描述__ init __必需项right-aligned 初始化工具类。getParameterInfo可选定义工具的参数。isLicensed可选返回工具是否获得执行许可。updateParameters可选在用户每次在工具对…

登录拦截器

目录 &#x1f388;1.登陆拦截器的使用 &#x1f38a;2.ThreadLocal的简单使用 &#x1f383;3.登录拦截器拦截和放行配置 1.登陆拦截器的使用 创建一个拦截器类&#xff0c;必须让其实现HandlerInterceptor接口 1.获取前端的token 2.判断token是否为空 3.若为空&#xff…

自动发卡平台源码优化版,支持个人免签支付

源码下载地址&#xff1a;自动发卡平台源码优化版.zip 环境要求&#xff1a; php 8.0 v1.2.6◂ 1.修复店铺共享连接时异常问题 2024-03-13 23:54:20 v1.2.5 1.[新增]用户界面硬币增款扣款操作 2.[新增]前台对接库存信息显示 3.[新增]文件缓存工具类[FileCache] 4.[新增]库存同…

通讯控制板V1.2版本

通讯控制板硬件需求说明书 硬件组成 下图借鉴参考野火图纸 0. CAN接口 硬件需求 板载支持CAN通讯接口 CAN引脚功能PA12CAN_TXPA11CAN_RX 1. RS485接口 硬件需求 板载支持RS485通讯接口 RS485引脚功能PB10RS485_TXPB11RS485_RXPB12RS485_RE/DE 2. RS232接口 硬件需求 板…