Skip to content

Commit c949c92

Browse files
author
hfhoffman1144
committed
finished materials
1 parent cf7cda4 commit c949c92

File tree

4 files changed

+70
-1077
lines changed

4 files changed

+70
-1077
lines changed

python-pydantic/README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Pydantic: Simplifying Data Validation in Python
2+
3+
Supporting code for the Real Python tutorial [Pydantic: Simplifying Data Validation in Python](https://realpython.com/pydantic-simplifying-data-validation-in-python/).
4+
5+
To run the code in this tutorial, installed Pydantic with it's `email` dependency:
6+
7+
```console
8+
(venv) $ python -m pip install pydantic[email]
9+
```
10+
11+
Pydantic has a separate package for [setting management](https://docs.pydantic.dev/latest/concepts/pydantic_settings/), which you'll also cover in this tutorial. To install this, run the following command:
12+
13+
```console
14+
(venv) $ python -m pip install pydantic-settings
15+
```

0 commit comments

Comments
 (0)