From 5b34b41bd33b0a8602625ae4b9946c95d0839502 Mon Sep 17 00:00:00 2001 From: alex Date: Sun, 22 Mar 2026 19:28:12 +0100 Subject: Add feed tools --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'README.md') diff --git a/README.md b/README.md index b2c3c7c..fd2b50c 100644 --- a/README.md +++ b/README.md @@ -59,3 +59,19 @@ Because gemtext is such a simple format, many traditional authoring techniques b For example, adding a header or a footer to many pages can be done by plain text file concatenation. `gemini-to-web` includes an indexer that can generate a reverse-chronological list of articles automatically to simplify maintenance of a blog-like site. + +## Creating aggregators + +This repo contains a few scripts that can help you work with Gemini subscriptions. + +``` +#!/bin/sh + +echo "# Feeds" +echo + +{ + python3 gemget.py gemini://aperalesf.flounder.online/gemlog | python3 parse-feed.py gemini://aperalesf.flounder.online/gemlog "Gemlog de Adrián Perales" + python3 gemget.py gemini://alex.corcoles.net | python3 parse-feed.py gemini://alex.corcoles.net "El blog es mío" +} | sort -r | head -20 | python3 reparse-feed.py +``` -- cgit v1.2.3