├── .gitignore ├── LICENSE ├── README.md ├── example.env ├── requirements.txt └── zoom-importer.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .env -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsamat/zoom-importer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsamat/zoom-importer/HEAD/README.md -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsamat/zoom-importer/HEAD/example.env -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | python-slugify 3 | b2sdk 4 | environs -------------------------------------------------------------------------------- /zoom-importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsamat/zoom-importer/HEAD/zoom-importer.py --------------------------------------------------------------------------------