├── .gitignore ├── LICENSE ├── README.md ├── assets ├── wizard - color art.jpg ├── wizard - color art.png ├── wizard - line art.jpg ├── wizard - line art.png ├── wizard-600.jpg ├── wizard.jpg └── wizard.png ├── pyproject.toml ├── setup.cfg ├── streamers ├── __init__.py ├── requirements.txt └── streamers.py └── tests ├── __init__.py └── streamers_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbgibson/streamers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbgibson/streamers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbgibson/streamers/HEAD/README.md -------------------------------------------------------------------------------- /assets/wizard - color art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbgibson/streamers/HEAD/assets/wizard - color art.jpg -------------------------------------------------------------------------------- /assets/wizard - color art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbgibson/streamers/HEAD/assets/wizard - color art.png -------------------------------------------------------------------------------- /assets/wizard - line art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbgibson/streamers/HEAD/assets/wizard - line art.jpg -------------------------------------------------------------------------------- /assets/wizard - line art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbgibson/streamers/HEAD/assets/wizard - line art.png -------------------------------------------------------------------------------- /assets/wizard-600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbgibson/streamers/HEAD/assets/wizard-600.jpg -------------------------------------------------------------------------------- /assets/wizard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbgibson/streamers/HEAD/assets/wizard.jpg -------------------------------------------------------------------------------- /assets/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbgibson/streamers/HEAD/assets/wizard.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbgibson/streamers/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbgibson/streamers/HEAD/setup.cfg -------------------------------------------------------------------------------- /streamers/__init__.py: -------------------------------------------------------------------------------- 1 | from .streamers import main -------------------------------------------------------------------------------- /streamers/requirements.txt: -------------------------------------------------------------------------------- 1 | requests >=2.26.0 2 | streamlink>=5.3.0 3 | -------------------------------------------------------------------------------- /streamers/streamers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbgibson/streamers/HEAD/streamers/streamers.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/streamers_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbgibson/streamers/HEAD/tests/streamers_test.py --------------------------------------------------------------------------------