diff options
| author | alex <alex@pdp7.net> | 2026-03-22 19:28:12 +0100 |
|---|---|---|
| committer | alex <alex@pdp7.net> | 2026-03-22 19:28:12 +0100 |
| commit | 5b34b41bd33b0a8602625ae4b9946c95d0839502 (patch) | |
| tree | 21e00df5eb9c13fc81521f63067e2e6baeebfc1c /reparse-feed.py | |
| parent | 5a560cb4c986b70e54955587671807457bb61b84 (diff) | |
Diffstat (limited to 'reparse-feed.py')
| -rw-r--r-- | reparse-feed.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/reparse-feed.py b/reparse-feed.py new file mode 100644 index 0000000..4d8d5e8 --- /dev/null +++ b/reparse-feed.py @@ -0,0 +1,5 @@ +import sys + +for line in sys.stdin.read().splitlines(): + date, url, title, = line.split(maxsplit=2) + print(f"=> {url} {date} {title}") |
