| fonts | ||
| images | ||
| scripts | ||
| .gitignore | ||
| config.toml | ||
| LICENSE | ||
| README.md | ||
| requirements.txt | ||
| shell.nix | ||
| spiderss.py | ||
spiderss - a plaintext RSS crawler
spiderss is a plaintext RSS crawler, based on feedparser, python-readability, html2text, Beautiful Soup and Pandoc. Actually, it's just a python script.
Read the news you want, the way you want it. Without advertisements, clickbait and trackers. Drop unresponsive web interfaces and stop accepting cookies, because plaintext is God.
Articles are scraped by default as Markdown files from the original article web page and stored in a special folder structure. You can parse articles in your favourite file format by defining your own postprocessor.
Note: This script is under development and far from being complete. Until now it works for the most feeds I read. Use at your own risk!
Features
- Store articles in categories
- Delete articles after a few days
- Filter articles, you're not interested in
- Distinguish new from read articles
- Store loved articles forever
- OPML import
Installation
Until now there is no install method, just ways to call the script.
NixOS
Call nix-shell in the project directory. This will drop you into a python environment with all necessary requirements.
Legacy OS
Install Panoc with your package manager and the python requirements with pip install -r requirements.txt.
Android
Use Nix-on-Droid and call nix-shell.
Usage
usage: spiderss.py [-h] [-v] [-c CONFIG]
Crawl RSS feeds and store articles as Markdown files.
optional arguments:
-h, --help show this help message and exit
-v, --verbose verbose output
-c CONFIG, --config CONFIG
config file (default: ./config.toml)
Configuration
The config file is written in TOML.
Edit config.toml to your liking before calling the script.
# This defines the base directory for the feeds. Please use an absolute path.
base_directory = '/home/<user>/rss'
# Articles older than max_age (days) will be deleted and not be added.
max_age = 30
# Date and time format as strftime, to be included in the articles.
datetime_format = '%d.%m.%Y %H:%M'
# Postprocessing command of the articles. The article is written to stdin in HTML format and read from stdout.
postprocessor = 'pandoc -f html -t markdown_strict-raw_html --reference-links --reference-location=document'
# Fileending for the article files.
fileending = 'md'
# List of regular expression strings. If any of these matches an lowercase article title, the article won't be saved.
# E.g. if you wan't to skip news about RSS explicitly, add '(\W|^)rss(\W|$)'.
filters = []
# Feeds
# The category can be empty (''). The feed fill then be stored in the base_directory.
# The category can also be a path, which will result in subdirectories (e.g. 'technology/hardware').
# The name can be empty, too (''). feeds with the same category will then be stored in the same directory.
# If scrape is set to true, the article content will be fetched from it's link.
# Otherwise the content of the RSS article is used.
[[feed]]
category = 'News'
name = 'Newssite'
url = 'https://example.org/feed'
scrape = false
[[feed]]
category = 'News'
name = 'Newssite 2'
url = 'https://example.org/feed'
scrape = true
OPML import
Use the opml2spiderss.py script in the script/ folder.
It prints the TOML format of the feeds to stdout.
You can append the feeds to your config e.g. the following way:
./opml2spiderss.py <your_feeds>.opml >> <your_config>.toml
Keep articles up to date
Just create a cron job or a systemd.service, which calls the script every now and then.
How to read articles
Use your favourite Markdown viewer, or just the console. spiderss integrates nice with the ranger filemanager which eases navigating through complex folder structures.
The folder structure
The script creates a folder structure the following way:
base_directory
├── category
│ ├── feedname
│ │ ├── new
│ │ └── read
│ └── another feedname
│ ├── new
│ └── read
├── another category
│ └── a third feedname
│ ├── new
│ └── read
└── loved
Every feed gets a new and a read subfolder. Article files are stored in the new folder, when they are created. Move them to the read folder if you're done reading them. You can do this easily e.g. by setting a keybinding in ranger. Articles, stored in one of the folders are not crawled again and are deleted if they expire the max_age.
A special folder, called loved, is created on startup in the base_directory. It is intended for articles, you want to keep. Articles inside are never deleted, even if they expire the max_age.
Articles are stored in files with the name YYYYMMDDHHmm_article_name.md.
Thus articles are sorted by publishing date automatically.
Read articles on multiple devices
Just synchronize the base_directory with Syncthing, rsync or put it in your Nextcloud.
Acknowledgements
Thanks to all the people who created the nice software, this project in based on.
And also thanks to Dieter Steffmann who created the Canterbury font, which is used for the logo.
You can find it in the fonts/ directory.
