├── Procfile ├── Readme.md ├── app.json ├── bot.py ├── pin.py ├── requirements.txt └── runtime.txt /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedfurkan/pinterest_downloader_telegram/HEAD/Readme.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedfurkan/pinterest_downloader_telegram/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedfurkan/pinterest_downloader_telegram/HEAD/bot.py -------------------------------------------------------------------------------- /pin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedfurkan/pinterest_downloader_telegram/HEAD/pin.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedfurkan/pinterest_downloader_telegram/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.4 2 | --------------------------------------------------------------------------------