Merge pull request #4 from alex-bellon/requirements
Added python-dateutil to dependencies and created requirements.txt
This commit is contained in:
commit
2d6fb6b3c3
|
@ -36,10 +36,14 @@ Example:
|
||||||
|
|
||||||
# Getting Started
|
# Getting Started
|
||||||
## Dependencies
|
## Dependencies
|
||||||
To run the program, you will need the following dependencies:
|
To run the program, you will need the following dependencies:
|
||||||
`pip install requests`
|
`pip install requests`
|
||||||
`pip install jsonpickle`
|
`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:
|
Then run from the command line:
|
||||||
`python export.py`
|
`python export.py`
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
requests
|
||||||
|
jsonpickle
|
||||||
|
canvasapi
|
||||||
|
python-dateutil
|
Loading…
Reference in New Issue