Added support to download canvas webpages #7

Merged
dj346 merged 16 commits from master into master 2022-01-22 10:21:05 -07:00
4 changed files with 2511 additions and 1 deletions
Showing only changes of commit 34d561a639 - Show all commits

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
.vscode
output/
node_modules/
credentials.yaml

View File

@ -44,8 +44,11 @@ To run the program, you will need the following dependencies:
`pip install python-dateutil`
`pip install PyYAML`
`npm i github:gildas-lormeau/SingleFile`
You can install these dependencies using
`pip install -r requirements.txt`
`pip install -r requirements.txt` AND
`npm i`
Then run from the command line:
`python export.py`

2501
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

5
package.json Normal file
View File

@ -0,0 +1,5 @@
{
"dependencies": {
"single-file": "github:gildas-lormeau/SingleFile"
}
}