I've got a set of XML files with article content (title, subtitle, content). I've got a Yahoo Pipe that finds the article XML for a specific date and turns it into an RSS feed. This feed is read by IFTTT to publish the article for today on my Wordpress blog.
Now Yahoo Pipes is going down in September, and I'm in trouble! What service can I use to fetch the content from XML and feed it into IFTTT, so it can be published on my blog. As far as I see, IFTTT only takes RSS as input for this sort of things.
I've tried pipe2py to turn the Pipe into Python code (if that would work at all), but I can't get pipe2py working, not on GAE (as I need an online service) and not on my Windows PC either.
I'm experienced with YQL as well, but that only outputs XML, no RSS, so it's of no use here.
So far I can only think of:
Implement on GAE/Python my own app that reads XML and turns it into RSS (cumbersome)
Manually publish all articles on my blog with a due date (three months of daily articles to go - even more cumbersome)
Any ideas?