Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seenaburns/picofeed
A minimal terminal rss reader
https://github.com/seenaburns/picofeed
cli go golang rss rss-reader terminal
Last synced: 28 days ago
JSON representation
A minimal terminal rss reader
- Host: GitHub
- URL: https://github.com/seenaburns/picofeed
- Owner: seenaburns
- License: bsd-3-clause
- Created: 2018-12-04T06:35:26.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-09T21:39:40.000Z (almost 6 years ago)
- Last Synced: 2024-08-03T23:29:50.505Z (4 months ago)
- Topics: cli, go, golang, rss, rss-reader, terminal
- Language: Go
- Size: 19.5 KB
- Stars: 62
- Watchers: 4
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-golang-repositories - picofeed
README
# Picofeed
Picofeed is a minimal terminal rss reader. It takes feed urls direct or files
of newline separated urls. It fetches all feeds on demand, and displays them.Things you don't need with picofeed:
- An account
- A subscription
- Any state at allHonestly it's like a fancy rss curl.
```
Examples:
picofeed feeds.txt --web
picofeed http://seenaburns.com/feed.xml
picofeed http://seenaburns.com/feed.xml feeds.txt http://example.com/feed.xml
``````sh
# Use whatever click to open your terminal supports, like cmd+double click in OSX's Terminal.app
./picofeed feeds.txt
```
```sh
# Open in browser with clickable links (wow!)
./picofeed feeds.txt --web
```
#### Install
From source, with go 1.11 just run `go build`
Or there are precompiled binaries in the [releases page](https://github.com/seenaburns/picofeed/releases/latest)
#### Other
Picofeed is built on top of [gofeed](https://github.com/mmcdole/gofeed)