Added python-dateutil to dependencies and created requirements.txt #4

Merged
alex-bellon merged 2 commits from requirements into master 2021-03-17 08:44:16 -06:00
2 changed files with 10 additions and 2 deletions
Showing only changes of commit 30dfe5166b - Show all commits

View File

@ -39,7 +39,11 @@ Example:
To run the program, you will need the following dependencies:
`pip install requests`
`pip install jsonpickle`
`pip install canvasapi`
`pip install canvasapi`
`pip install python-dateutil`
You can install these dependencies using
`pip install -r requirements.txt`
Then run from the command line:
`python export.py`
@ -53,4 +57,4 @@ These are the configuration parameters for the program:
- List of Course IDs that should be skipped
# Contribute
I would love to see this script's functionality expanded and improved! I welcome all pull requests :) Thank you!
I would love to see this script's functionality expanded and improved! I welcome all pull requests :) Thank you!

4
requirements.txt Normal file
View File

@ -0,0 +1,4 @@
requests
jsonpickle
canvasapi
python-dateutil