├── .editorconfig ├── .github └── workflows │ ├── checks.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── Makefile ├── README.md ├── assets ├── camera.wav ├── keyboard_typing.wav ├── player_ui.png └── rain_and_storm.wav ├── main.py ├── poetry.lock ├── pypod ├── __init__.py ├── app.py ├── cli.py ├── config.py ├── player.py ├── song.py ├── style.css ├── ui.py └── utils.py └── pyproject.toml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwant/pypod/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwant/pypod/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwant/pypod/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwant/pypod/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwant/pypod/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwant/pypod/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwant/pypod/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwant/pypod/HEAD/README.md -------------------------------------------------------------------------------- /assets/camera.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwant/pypod/HEAD/assets/camera.wav -------------------------------------------------------------------------------- /assets/keyboard_typing.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwant/pypod/HEAD/assets/keyboard_typing.wav -------------------------------------------------------------------------------- /assets/player_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwant/pypod/HEAD/assets/player_ui.png -------------------------------------------------------------------------------- /assets/rain_and_storm.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwant/pypod/HEAD/assets/rain_and_storm.wav -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwant/pypod/HEAD/main.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwant/pypod/HEAD/poetry.lock -------------------------------------------------------------------------------- /pypod/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypod/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwant/pypod/HEAD/pypod/app.py -------------------------------------------------------------------------------- /pypod/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwant/pypod/HEAD/pypod/cli.py -------------------------------------------------------------------------------- /pypod/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwant/pypod/HEAD/pypod/config.py -------------------------------------------------------------------------------- /pypod/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwant/pypod/HEAD/pypod/player.py -------------------------------------------------------------------------------- /pypod/song.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwant/pypod/HEAD/pypod/song.py -------------------------------------------------------------------------------- /pypod/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwant/pypod/HEAD/pypod/style.css -------------------------------------------------------------------------------- /pypod/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwant/pypod/HEAD/pypod/ui.py -------------------------------------------------------------------------------- /pypod/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwant/pypod/HEAD/pypod/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmwant/pypod/HEAD/pyproject.toml --------------------------------------------------------------------------------