an XML format for outlines, or hierarchical, ordered lists of arbitrary elements
Questions tagged [opml]
33 questions
8
votes
5 answers
How do you extract feed urls from an OPML file exported from Google Reader?
I have a piece of software called Rss-Aware that I'm trying to use. It basically desktop feed-checker that checks if RSS feeds are updated and gives a notification through Ubuntu's Notify-OSD system.
However, to know what feeds to check, you have to…

Sergei R.
- 163
- 1
- 6
6
votes
1 answer
AttributeError: module 'pandas' has no attribute 'read_xml' or 'to_xml'
Im trying to parse feedly RSS feeds exported opml files into xml files.
I succeeded into doing so with my use of listparser, dicttoxml, and pandas. I wanted to try out pandas read_xml() and to_xml() to find out how it would perform compared to me…

pysolver33
- 307
- 1
- 5
- 13
4
votes
1 answer
click through yes/no questions from OPML one at a time
Based on a flowchart noted as OPML nodes in my xhtml, I would like to dynamically (using jquery, without refreshing the page) get questions shown one by one, depending on the yes/no answer of the previous one, until a final message in the OPML is…

newnomad
- 1,055
- 3
- 11
- 15
3
votes
1 answer
Youtube-dl subscription to mp3
So my goal is to make code so it would automatically download from all my subscribed Youtube channels to mp3 files.
I having difficulty to deal with EO error which is not clear for me, thus I never had to deal with it, I've done research but nothing…

Edgaras Vaninas
- 49
- 8
3
votes
2 answers
How to use a regex to find quoted attribute values in an OPML (XML) file
I am searching through an OPML file that looks something like this. I want to pull out the outline text and the xmlUrl.

jumbopap
- 3,969
- 5
- 27
- 47
2
votes
2 answers
RSSTail alternative with OPML support?
rsstail can't handle OPML list, but can only track single RSS feed, AFAIK
Is there any CLI alternative (tail like) that can do this task?
Or online service that can transform OPML to valid single URL RSS, which I can then pipe to rsstail?

theta
- 24,593
- 37
- 119
- 159
2
votes
1 answer
How to import OPML file into Outlook 2013 via VBA?
In Outlook 2013 there is an option to import an OPML file and add all or some selected RSS feeds to the feeds list. This function can be triggered by right-clicking on the "RSS feeds" folder in "Mail" view and selecting "Import an OPML File...".…

kriegaex
- 63,017
- 15
- 111
- 202
2
votes
1 answer
How we can parse OPML String
I got the following String as response when I post the url via HttpPost. My problem is how can I parse this string.
200

Android Boy
- 4,335
- 6
- 30
- 58
1
vote
0 answers
Single Q/A Per Page (Conditional) Workflow Application
I'm currently working with students who have ADHD and am trying to set up a system (preferably a website) that takes a decision tree we have made (exported to OPML) and displays it one question per page, but moves to a yes/no branch of the tree…

Adam W
- 54
- 5
1
vote
1 answer
Can flowcharts with crosslines be noted as OPML?
Is there a standard to reference cross-lines in a mindmap or flowchart in OPML.For example with anchors and links. It seems that flowchart editors online such as gliffy can import OPML but export is only xml, not OPML. Put simply: can this flowchart…

newnomad
- 1,055
- 3
- 11
- 15
1
vote
1 answer
Informa RSS - Class missing error, what am I doing wrong?
I've set out some code for reading an OPML file for subscriptions from YouTube. The code comes from Informa RSS here
When I run the code I get class missing error. The only reference to this I could find suggested the javaDOM version might be wrong…

JackDaw
- 21
- 5
1
vote
1 answer
Unmarshal a nested OPML Document
I am trying to unmarshal a simple nested opml document. The problem comes when I have nested opml and I am unable to decide on structure. I am putting the code below. Please let me know how can I parse the multi level of nesting of the Outline…

Kunal Jha
- 2,102
- 4
- 24
- 34
1
vote
0 answers
How to parse OPML with XDocument in Windows Phone
I am parsing OPML with XDocument `(C#, Windows Phone) with
var _doc = XDocument.Parse(opmlFileString);
This works fine most of the time, e.g. stuff from http://www.digitalpodcast.com/podcastnews/opml-links/ or from…

juhariis
- 568
- 8
- 15
1
vote
1 answer
PHP OPML Parser
Kindly tell me how to make an OPML parser. I have the code but it is not working for all generic OPML files:
if (file_exists('test.opml')) {
$xml =simplexml_load_file('test.opml');
}
for($i=0;$i<=count($xml);$i++) {
…

Manzoor Husain
- 11
- 1
- 2
1
vote
1 answer
Any advice on parsing an OPML file with PHP so I can import the addresses into a mySql database?
I want to be able to have the user select an OPML file that contains a large number of bookmarks, then loop through each one and toss it in a mysql database.
Any direction would be much appreciated.

Daelan
- 685
- 4
- 11
- 24