From 114f8e95eaa3b7983dc22cef4ab10f497326e4aa Mon Sep 17 00:00:00 2001 From: 17acres Date: Sat, 3 Jul 2021 12:44:56 -0400 Subject: [PATCH] Add missing pyyaml dependency to lists --- docs/README.md | 2 ++ requirements.txt | 1 + 2 files changed, 3 insertions(+) diff --git a/docs/README.md b/docs/README.md index 1e06bf7..7377b67 100644 --- a/docs/README.md +++ b/docs/README.md @@ -35,12 +35,14 @@ Example: - all_output.json # Getting Started + ## Dependencies To run the program, you will need the following dependencies: `pip install requests` `pip install jsonpickle` `pip install canvasapi` `pip install python-dateutil` +`pip install PyYAML` You can install these dependencies using `pip install -r requirements.txt` diff --git a/requirements.txt b/requirements.txt index aa336e9..0a6a4fc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,3 +2,4 @@ requests jsonpickle canvasapi python-dateutil +PyYAML