Merge pull request #4 from alex-bellon/requirements

Added python-dateutil to dependencies and created requirements.txt
This commit is contained in:
David Katsandres 2021-03-17 07:44:16 -07:00 committed by GitHub
commit 2d6fb6b3c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 4 deletions

View File

@ -36,10 +36,14 @@ Example:
# Getting Started
## Dependencies
To run the program, you will need the following dependencies:
`pip install requests`
`pip install jsonpickle`
`pip install canvasapi`
To run the program, you will need the following dependencies:
`pip install requests`
`pip install jsonpickle`
`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`

4
requirements.txt Normal file
View File

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