mirror of
https://github.com/tanrax/RSSingle.git
synced 2024-11-10 07:05:42 +01:00
51 lines
954 B
Markdown
51 lines
954 B
Markdown
# RSSingle
|
|
|
|
Generates an RSS file from the list of other feeds (RSS/Atom/JSON). Very handy when you want to centralise the list of your feeds in one place and all your devices feed from the same place.
|
|
|
|
## Run
|
|
|
|
1. Download the binary.
|
|
|
|
``` shell
|
|
wget
|
|
```
|
|
|
|
2. Gives execution permissions.
|
|
|
|
``` shell
|
|
chmod +x rssingle
|
|
```
|
|
|
|
3. In the same directory as the binary, you can create a local `config.yml` file in this format:
|
|
|
|
``` yaml
|
|
title: My RSS Feed
|
|
description: My customised RSS feed with technology news
|
|
feeds:
|
|
- https://programadorwebvalencia.com/feed/
|
|
- https://republicaweb.es/feed/
|
|
```
|
|
|
|
If not, you can download the example in the repository.
|
|
|
|
4. Run the binary.
|
|
|
|
``` shell
|
|
./rssingle
|
|
```
|
|
|
|
A file called `rss.xml` will be created.
|
|
|
|
## Development
|
|
|
|
### Compiling
|
|
|
|
```shell
|
|
pyinstaller --onefile rssingle.py
|
|
```
|
|
|
|
You will find the binary in `dist`.
|
|
|
|
## Thanks
|
|
|
|
@shymega for his original project [singlerss](https://github.com/shymega/singlerss). |