Pipes is being very buggy lately and has stopped saving new pipes these days. Google Mashup Editor and Microsoft Popfly are both discontinued. Are there are any currently running web apps(or atleast libraries that run on appengine) that do something similar ?
-
duplicate: http://stackoverflow.com/questions/2019887/alternatives-to-yahoo-pipes – Mauricio Scheffer Apr 13 '10 at 11:57
-
4no duplicate: that of is about "alternatives running on my own server" – ax. May 07 '10 at 15:37
6 Answers
(This question has been asked several times...n For example: Yahoo Pipes clone script? Alternatives to Yahoo Pipes )
Pipe2py is a compiler script that will generate a Python equivalent of a Yahoo Pipe given the URL of the pipe:
https://github.com/ggaughan/pipe2py/
(Note that not all Pipes blocks have yet been implemented.)
A "hosted" version of Pipe2Py is also available on Google App Engine: http://pipes-engine.appspot.com/
You might also find YQL [ http://developer.yahoo.com/yql/console/ ] and Scraperwiki [ http://scraperwiki.com/ ] useful

- 1
- 1

- 5,690
- 7
- 52
- 84
-
2Sure it has but in the future relative to the day I posted this question. Do check the dates. Thanks for the answer, no irony :) – Sri Kadimisetty Nov 29 '12 at 13:28
Dapper seems pretty good, not as flexible but it's easier to parse data.
-
3dapper also seems to be owned/operated by yahoo - not sure how this would be a suitable alternative – messedup Apr 17 '11 at 13:15
-
@messedup: Not sure why the downvote, Dapper was acquired by Yahoo! on 05 Oct 2010 (http://www.dapper.net/news/?p=1208), a couple of months after I wrote this. – Alix Axel Apr 17 '11 at 14:01
-
1Fair enough - i only downvoted because it seemed like there were better answers available. – messedup Apr 18 '11 at 00:12
-
Check out http://superfeedr.com/ It's not exactly like pipes as it doesn't cache any data, but you can easily define work flows where the data from feeds is pushed to you.

- 31,046
- 20
- 66
- 93
I used Yahoo Pipes to be able to requets RSS feeds from other websites using AJAX.
Now that Pipes is not working, I have used cors-anywhere
to develop my own cors-proxy. It would take you 10-15 minutes to get your own version ready. You can find my implementation here
Once you have it ready in a GitHub repository you can deploye the repo from Github to Azure in just 5 minutes following this tutorial.
Then you will be able to request a feed via ajax, for example:
http://stackoverflow.com/feeds/user/606821
Can be requested using:
http://my-cors-proxy.azurewebsites.net/stackoverflow.com/feeds/user/606821
Note: You just need to replace the azure's website URL with your own one:
The URL above can only be invoked from remojansen.com
because it was configured that way using the cors-anywhere
originWhitelist
setting:
originWhitelist: (process.env.PORT ? ['http://www.remojansen.com'] : []),
I hope my answer will help some people with my problem.

- 23,172
- 11
- 70
- 93
The unstopable 'upgrade' to verion II of YP is causing more than a few problems, hopefully it will settle down soon. My site has already ceased functioning as a result.
Am in the process of recreating my pipes using PYTHON on the Google Apps Engine, it's not as friendly as pipes but should be more stable. Very similiar to raw PHP but with sublte quirks and definitely not for beginers. I'm reasonably good with php and finding it steep learning curve, but there is nothing else credible out there.

- 646
- 5
- 8