Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/m0zgen/rss2bot
⚙ Script for reading and forwarding rss feeds to Telegram
https://github.com/m0zgen/rss2bot
Last synced: 1 day ago
JSON representation
⚙ Script for reading and forwarding rss feeds to Telegram
- Host: GitHub
- URL: https://github.com/m0zgen/rss2bot
- Owner: m0zgen
- Created: 2019-01-09T09:59:35.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-06-06T16:31:57.000Z (over 1 year ago)
- Last Synced: 2023-06-06T17:26:42.525Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 12
- Watchers: 3
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### RSS feed reader
1. Register new bot with Telegram BotFather
2. Take TOKEN and Chat ID and put to the bot_token, bot_chatID variables
3. Run ./rss.py### Venv usage
Activate `venv`:
```python
source venv/bin/activate
```Install modules from `requirements.txt`:
```python
pip install -r requirements.txt
```Run rss.py:
```python
python rss.py
```
## How to update packages```shell
pip3 install pip-upgrader
```Upgrade all packages:
```shell
pip-upgrade
```