Show HN: Riko – A Python stream processing engine modeled after Yahoo! Pipes
1–10 of 69 posts
Re: Show HN: Riko – A Python stream processing engine modeled after Yahoo! Pipes
#2Out of the box, `riko` can read csv/xml/json/html files; create text and data based flows via modular pipes; parse and extract RSS/ATOM feeds; and bunch of other neat things. You can think of `riko` as a poor man's Spark/Storm... stream processing made easy!
Feedback welcome so let me know what you think!
Resources: FAQ [3], cookbook [4], and ipython notebook [5]
Quickie Demo:
>>> from riko.modules import fetch
>>>
>>> stream = fetch.pipe(conf={'url': 'https://news.ycombinator.com/rss'})
>>> item = next(stream)
>>> item['title'], item['link']
('Master Plan, Part Deux', 'https://www.tesla.com/blog/master-plan-part-deux')
[1] https://web.archive.org/web/20150930021241/http://pipes.yaho...[2] https://github.com/ggaughan/pipe2py/
[3] https://github.com/nerevu/riko/blob/master/docs/FAQ.rst
[4] https://github.com/nerevu/riko/blob/master/docs/COOKBOOK.rst
[5] http://nbviewer.jupyter.org/github/nerevu/riko/blob/master/e...
Re: Show HN: Riko – A Python stream processing engine modeled after Yahoo! Pipes
#3Thanks!
Re: Show HN: Riko – A Python stream processing engine modeled after Yahoo! Pipes
#4I was a heavy user of pipes and I'm now a heavy user of python. I have built my own dodgy simple replacement for some of the things I used to rely on pipes for. I'm very eager to see what you've got here, at first glance it seems like an excellent fit for my needs. Thanks!
Re: Show HN: Riko – A Python stream processing engine modeled after Yahoo! Pipes
#5Re: Show HN: Riko – A Python stream processing engine modeled after Yahoo! Pipes
#6Re: Show HN: Riko – A Python stream processing engine modeled after Yahoo! Pipes
#7Re: Show HN: Riko – A Python stream processing engine modeled after Yahoo! Pipes
#8Looks nice. Are there any plans for twitter support?
Re: Show HN: Riko – A Python stream processing engine modeled after Yahoo! Pipes
#9I am still a user of Plagger [1], but development halted quite some time ago. Maybe this could be a good replacement. [1] https://github.com/miyagawa/plagger
riko doesn't have a scheduler (although the original pipe2py has a json based one). However, I do plan to integrate with Airflow/Oozie/Luigi [1-3] in the future to make it easier to design workflows.
The notification system reminds me of Huggin [4]. Since riko is twisted based, it should be fairly straightforward to implement something similar for IRC/IMAP/FTP/etc.
[1] https://github.com/apache/incubator-airflow