From dfc95cfdde8452b89c42618af997bd237cedaa6f Mon Sep 17 00:00:00 2001 From: Benji Nguyen <45523555+solidiquis@users.noreply.github.com> Date: Thu, 2 May 2024 11:30:41 -0700 Subject: [PATCH] Python Docs Update (#16) --- README.md | 2 +- examples/python/README.md | 3 +-- examples/python/requirements.txt | 2 ++ 3 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 examples/python/requirements.txt diff --git a/README.md b/README.md index 6540cc07..7c507acd 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ $ cargo add --git https://github.com/sift-stack/sift sift $ pip install 'git+https://github.com/sift-stack/sift.git#subdirectory=python' ``` -#### Manual Installation +### Manual Installation For manual installation instructions for a particular supported programming language, click on one of the following links: - [Go](/docs/go.md) diff --git a/examples/python/README.md b/examples/python/README.md index fd976bc0..5290a44d 100644 --- a/examples/python/README.md +++ b/examples/python/README.md @@ -13,8 +13,7 @@ $ source venv/bin/activate Install dependencies: ```bash -$ pip install python-dotenv 'git+https://github.com/sift-stack/sift.git#subdirectory=python' - +$ pip install -r requirements.txt ``` Create your `.env` file: diff --git a/examples/python/requirements.txt b/examples/python/requirements.txt new file mode 100644 index 00000000..82f6ef93 --- /dev/null +++ b/examples/python/requirements.txt @@ -0,0 +1,2 @@ +python-dotenv==1.0.1 +sift @ git+https://github.com/sift-stack/sift.git#subdirectory=python