# spiderss - a plaintext RSS crawler ![spiderss logo](images/logo.png) __spiderss__ is a plaintext RSS crawler, based on [feedparser](https://github.com/kurtmckee/feedparser), [python-readability](https://github.com/buriy/python-readability), [html2text](https://github.com/Alir3z4/html2text), [Beautiful Soup](https://www.crummy.com/software/BeautifulSoup/) and [Pandoc](https://pandoc.org/). 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](https://pandoc.org/) with your package manager and the python requirements with `pip install -r requirements.txt`. ### Android Use [Nix-on-Droid](https://github.com/t184256/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//rss' # Articles older than max_age (days) will be deleted and not be added. max_age = 30 # 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 = [] # Date and time format as strftime to be included in the articles. datetime_format = '%d.%m.%Y %H:%M' # 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 .opml >> .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](https://github.com/ranger/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](https://syncthing.net/), [rsync](https://rsync.samba.org/) or put it in your [Nextcloud](https://nextcloud.com/). ## 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.