├── .env.template ├── .gitignore ├── README.md ├── alts.py ├── config-template.yaml ├── icon_v2.png └── requirements.txt /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxpez/alts/HEAD/.env.template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .env 3 | config.yaml 4 | *.wav 5 | __pycache__/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxpez/alts/HEAD/README.md -------------------------------------------------------------------------------- /alts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxpez/alts/HEAD/alts.py -------------------------------------------------------------------------------- /config-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxpez/alts/HEAD/config-template.yaml -------------------------------------------------------------------------------- /icon_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxpez/alts/HEAD/icon_v2.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alxpez/alts/HEAD/requirements.txt --------------------------------------------------------------------------------