Metadata-Version: 2.4
Name: uw-panopto-downloader
Version: 1.0.0
Summary: A Python library for downloading videos from UW Panopto
Project-URL: Homepage, https://github.com/elimelt/uw-panopto-downloader
Project-URL: Documentation, https://github.com/elimelt/uw-panopto-downloader#readme
Project-URL: Repository, https://github.com/elimelt/uw-panopto-downloader.git
Project-URL: Bug Tracker, https://github.com/elimelt/uw-panopto-downloader/issues
Author-email: Elijah Melton <elimelt@uw.edu>
License-Expression: MIT
License-File: LICENSE
Keywords: downloader,panopto,python,video
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.11
Requires-Dist: beautifulsoup4>=4.9.3
Requires-Dist: requests>=2.25.0
Requires-Dist: selenium>=4.1.0
Requires-Dist: webdriver-manager>=3.5.2
Provides-Extra: dev
Requires-Dist: black>=22.0.0; extra == 'dev'
Requires-Dist: flake8>=5.0.0; extra == 'dev'
Requires-Dist: isort>=5.0.0; extra == 'dev'
Requires-Dist: pre-commit>=3.5.0; extra == 'dev'
Requires-Dist: ruff>=0.2.0; extra == 'dev'
Description-Content-Type: text/markdown

# UW Panopto Downloader

Download lectures in bulk

## Setup

1. Clone the repository
```bash
git clone git@github.com:elimelt/uw-panopto-downloader.git
cd uw-panopto-downloader
```

2. Create a virtual environment
```bash
python -m venv venv
# macOS/Linux
source venv/bin/activate
# Windows
venv\Scripts\activate
```

3. Install dependencies
```bash
pip install -r requirements.txt
```
