├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── main.py ├── requirements.txt └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-fazin/Lyrics-Search-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-fazin/Lyrics-Search-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 main.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-fazin/Lyrics-Search-Bot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-fazin/Lyrics-Search-Bot/HEAD/app.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-fazin/Lyrics-Search-Bot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyrogram 2 | tgcrypto 3 | requests 4 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.8 2 | --------------------------------------------------------------------------------