Skip to content

c-rustacean/hyposoapie

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Intro

Replicate Yahoo! Pipes idea in command line and generate static pages.

Requirements

  • static pages
  • refresh via some cron job
  • as simple as possible (server side and in terms of implementation)

Minimal PoC

From Andy's brain

Brain dump of the config file format (toml)

The config file should be as simple as something like:

[sources]
rss1 = "https://hotnews.ro/"
rss2 = "https://orf.at"
rss3 = "feed.xml"

[filter.electric]
in = [ "rss1", "rss2" ]
contains = "electric car"

[filter.tesla]
in = [ "rss1" ]
contains = [ "tesla" ]

[output]
combine = ["tesla", "electric"]

TODO

Support these (or something like it), also:

[filter.unique]
in = [ "electric", "tesla" ]
mix = "dedup"
# mix = "and"

[output]
combine = "unique"

This is "the UI", so make it simple!

About

Just like Yahoo! Pipes, but worse!

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages