The majority of pyparsing examples that I have seen have dealt with linear expressions.

a = 1 + 2

I'd like to parse mediawiki headlines, and hash them to their sections.

e.g.

Introduction goes here
==Hello==
foo
foo
===World===
bar
bar

Dict would look like:

{'Introduction':'Whoot introduction goes here', 'Hello':"foo\nfoo", 'World':"bar\nbar"}

If I could just see one example of this "enclosed" (==HEADLINE==) parsing, I'd be able to move on to links/images/files etc.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Did you miss this wiki-like language parser in the pyParsing web site examples?

h2 = QuotedString("==")
link|improve this answer
1  
Alas, it would seem so. – torger Dec 29 '09 at 3:53
feedback

Also, this format is not unlike a .INI file:

[section1]
a = 1
b = 3
[section2]
blah=a

Which can be parsed into a nested dictionary using this example code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.