From fa9b55060cd5037005f3657c797ff2bb9ab06579 Mon Sep 17 00:00:00 2001 From: Matt Seymour Date: Mon, 9 Sep 2024 12:52:29 +0100 Subject: [PATCH] Update README.md Add the pypi package name and example installation step. At the moment users need to click into doc, then click installation to get the package name and install steps. Lets just add this most common of steps to the readme. --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 3d7f58a4..260532f4 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,12 @@ require defining a schema or form. I wanted to create a simple validation library where validating a simple value does not require defining a form or a schema. +```shell +pip install validators +``` + +Then, + ```python >>> import validators >>>