Skip to content

Commit 76d4d75

Browse files
authored
Update README.md
1 parent 7639b89 commit 76d4d75

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

fastapi-python-web-apis/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# A Close Look at a FastAPI Example Application
22

3-
This repository contains code snippets discussed in the associated tutorial on [A Close Look at a FastAPI Example Application](https://realpython.com/fastapi-python-web-apis/).
3+
This repository contains the code snippets from the tutorial [A Close Look at a FastAPI Example Application](https://realpython.com/fastapi-python-web-apis/).
44

55
## Installation
66

7-
The recommended way to install FastAPI is with the `[standard]` extra dependencies. This ensures you get all the tools you need for developing an API without having to hunt down additional packages later:
7+
The recommended way to install FastAPI is with the `[standard]` extra dependencies. This ensures you get all the tools you need for developing an API, without having to hunt down additional packages later:
88

99
```console
1010
$ python -m pip install "fastapi[standard]"
1111
```
1212

13-
The quotes around `"fastapi[standard]"` ensure the command works correctly across different [terminals](https://realpython.com/terminal-commands/) and operating systems. With the command above you install several useful packages, including the [FastAPI CLI](https://fastapi.tiangolo.com/fastapi-cli/) and [uvicorn](https://www.uvicorn.org/), an ASGI server for running your application.
13+
The quotes around `"fastapi[standard]"` ensure the command works correctly across different [terminals](https://realpython.com/terminal-commands/) and operating systems. With the command above, you install several useful packages, including the [FastAPI CLI](https://fastapi.tiangolo.com/fastapi-cli/) and [uvicorn](https://www.uvicorn.org/), an ASGI server for running your application.
1414

1515
You can also use the `requirements.txt` file in this folder and run `python -m pip install -r requirements.txt` to install the standard dependencies of FastAPI.

0 commit comments

Comments
 (0)