├── .gitignore ├── LICENSE ├── README.md ├── bot ├── bot.py ├── cron.py └── utils │ ├── BotManager.py │ ├── Configs.py │ ├── DB.py │ ├── RssReader.py │ └── __init__.py ├── requirements.txt └── run.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iauctb/RSS-Reader-Telegram-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iauctb/RSS-Reader-Telegram-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iauctb/RSS-Reader-Telegram-Bot/HEAD/README.md -------------------------------------------------------------------------------- /bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iauctb/RSS-Reader-Telegram-Bot/HEAD/bot/bot.py -------------------------------------------------------------------------------- /bot/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iauctb/RSS-Reader-Telegram-Bot/HEAD/bot/cron.py -------------------------------------------------------------------------------- /bot/utils/BotManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iauctb/RSS-Reader-Telegram-Bot/HEAD/bot/utils/BotManager.py -------------------------------------------------------------------------------- /bot/utils/Configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iauctb/RSS-Reader-Telegram-Bot/HEAD/bot/utils/Configs.py -------------------------------------------------------------------------------- /bot/utils/DB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iauctb/RSS-Reader-Telegram-Bot/HEAD/bot/utils/DB.py -------------------------------------------------------------------------------- /bot/utils/RssReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iauctb/RSS-Reader-Telegram-Bot/HEAD/bot/utils/RssReader.py -------------------------------------------------------------------------------- /bot/utils/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sinabakh' 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iauctb/RSS-Reader-Telegram-Bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iauctb/RSS-Reader-Telegram-Bot/HEAD/run.sh --------------------------------------------------------------------------------