Tagged Questions

11
votes
3answers
3k views

Parsing SQL with Python

I want to create a SQL interface on top of a non-relational data store. Non-relational data store, but it makes sense to access the data in a relational manner. I am looking into using ANTLR to ...
10
votes
4answers
552 views

what next after pyparsing?

I have a huge grammar developed for pyparsing as part of a large, pure python application. I have reached the limit of performance tweaking and I'm at the point where the diminishing returns make me ...
5
votes
3answers
976 views

Using pyparsing to parse a word escape-split over multiple lines

I'm trying to parse words which can be broken up over multiple lines with a backslash-newline combination ("\\n") using pyparsing. Here's what I have done: from pyparsing import * continued_ending = ...
4
votes
1answer
124 views

pyparsing setParseAction no tokens passed

I very new to pyparsing and Python so this is a warning that I might be doing something really wrong. What I am trying to do is build a SQL parser and build up tree with nodes that I can then walk. ...
4
votes
3answers
203 views

Pyparsing - parse jascii text from mixed jascii/ascii text file?

I have a text file with mixed jascii/shift-jis and ascii text. I'm using pyparsing and am unable to tokenize such strings. Here is an example code: from pyparsing import * subrange = ...
4
votes
4answers
558 views

Keyword Matching in Pyparsing: non-greedy slurping of tokens

Pythonistas: Suppose you want to parse the following string using Pyparsing: 'ABC_123_SPEED_X 123' were ABC_123 is an identifier; SPEED_X is a parameter, and 123 is a value. I thought of the ...
4
votes
3answers
299 views

What's the closest thing to pyparsing that exists for .NET?

What I'm especially interested in is the ability to define the grammar in the code as ordinary code without any unnecessary cruft. I'm aware I could use IronPython. I don't want to. UPDATE: To ...
3
votes
1answer
100 views

Non greedy parsing with pyparsing

I'm trying to parse a line with pyparsing. This line is composed of a number of (key, values). What I'd like to get is a list of (key, values). A simple example: ids = 12 fields = name should ...
3
votes
2answers
121 views

pyparsing issue

Right now I have just started to use pyparsing to parse simple postfix expressions. At the moment, I got this far: from pyparsing import * integer = Word(nums) op = Word("+-*/^", max=1) space = ...
3
votes
2answers
180 views

Pattern for associating pyparsing results with a linked-list of nodes

I have defined a pyparsing rule to parse this text into a syntax-tree... TEXT COMMANDS: add Iteration name = "Cisco 10M/half" append Observation name = "packet loss 1" assign Observation ...
3
votes
4answers
229 views

How can fractional number expressions be parsed using pyparsing?

We've just started to kick the tires pyparsing and like it so far, but we've been unable to get it to help us parse fractional number strings to turn them into numeric data types. For example, if a ...
3
votes
5answers
755 views

Python: How best to parse a simple grammar?

Ok, so I've asked a bunch of smaller questions about this project, but I still don't have much confidence in the designs I'm coming up with, so I'm going to ask a question on a broader scale. I am ...
3
votes
2answers
531 views

PyParsing: Is this correct use of setParseAction()?

I have strings like this: "MSE 2110, 3030, 4102" I would like to output: [("MSE", 2110), ("MSE", 3030), ("MSE", 4102)] This is my way of going about it, although I haven't quite gotten it yet: ...
3
votes
1answer
165 views

PyParsing: What does Combine() do?

What is the difference between: foo = TOKEN1 + TOKEN2 and foo = Combine(TOKEN1 + TOKEN2) Thanks. UPDATE: Based on my experimentation, it seems like Combine() is for terminals, where you're ...
3
votes
1answer
118 views

Will rewriting a multipurpose log file parser to use formal grammars improve maintainability?

TLDR: if I built a multipurpose parser by hand with different code for each format, will it work better in the long run using one chunk of parser code and an ANTLR, PyParsing or similar grammar to ...
3
votes
4answers
703 views

Find following tag with pyparsing

I'm using pyparsing to parse HTML. I'm grabbing all embed tags, but in some cases there's an a tag directly following that I also want to grab if it's available. example: import pyparsing target = ...
3
votes
5answers
497 views

Is there a library similar to pyparsing in Java?

I need to quickly build a parser for a very simplified version of a html-like markup language in Java. In python, I would use pyparsing library to do this. Is there something similar for Java? Please, ...
2
votes
2answers
81 views

Is there a “startswith” method in pyparsing

Hey I have written a very simple parser with pyparsing which detects some tokens in a text and then replaces them with a different string. The problem is that right now my code only works with exact ...
2
votes
1answer
45 views

How do I tell pyparsing to discard parts of the parsed string?

I'm writing a parser for some marked-up data, and I'd like to get pyparsing to discard things like start and end tags in the final result, leaving just the data. Can I do this, or do I just have to ...
2
votes
3answers
244 views

pyparsing ambiguity

I'm trying to parse some text using PyParser. The problem is that I have names that can contain white spaces. So my input might look like this. First, a list of names: Joe bob Jimmy X ...
2
votes
1answer
199 views

Partial evaluation with pyparsing

I need to be able to take a formula that uses the OpenDocument formula syntax, parse it into syntax that Python can understand, but without evaluating the variables, and then be able to evaluate the ...
2
votes
2answers
685 views

PyParsing simple language expressions

I'm trying to write something that will parse some code. I'm able to successfully parse foo(spam) and spam+eggs, but foo(spam+eggs) (recursive descent? my terminology from compilers is a bit rusty) ...
2
votes
3answers
670 views

Need help on making the recursive parser using pyparsing

I am trying the python pyparsing for parsing. I got stuck up while making the recursive parser. Let me explain the problem I want to make the Cartesian product of the elements. The syntax is ...
1
vote
1answer
45 views

pyparsing recursive does not throw exception

I have the following snippet with recursive statement from a pyparsing parser: def parse_query(querystr): # <<other parsing stuff>> queryexpression = querycondition + ...
1
vote
2answers
104 views

ParseException: Expected end of text

I am trying to parse text using pyparsing. My function is shown below. Firstly, I construct a list containing all the terms in my dictionary (a dictionary of commonly used terms in my website). Then I ...
1
vote
1answer
49 views

How do I specify token ordering in pyparsing?

Suppose I'm parsing the following line: The quick brown fox jumps over the lazy dog I'd like to parse this as: Words('The quick brown fox') + Literal('jumps') + Words('over the lazy dog') My ...
1
vote
2answers
189 views

Converting pyparsing.ParseResults back to html string

I'm brand new to pyparsing. How can I convert instance of class pyparsing.ParseResults back to a html string. ex. >>> type(gcdata) <type 'unicode'> >>> pat {<"div"> ...
1
vote
2answers
245 views

Recursive expressions with pyparsing

I'm trying to figure out how to do a left-associative expression where recursive (not-enclosed in anything) expressions are possible. For example, I'd like to do: expr + OP + expr that parses 2 ...
1
vote
4answers
102 views

Parsing and grouping text in a string using Python

I need to parse a series of short strings that are comprised of 3 parts: a question and 2 possible answers. The string will follow a consistent format: This is the question "answer_option_1 is in ...
1
vote
1answer
166 views

“Deparsing” a list using pyparsing

Is it possible to give pyparsing a parsed list and have it return the original string?
1
vote
1answer
91 views

Strip text except from the contents of a tag

The opposite may be achieved using pyparsing as follows: from pyparsing import Suppress, replaceWith, makeHTMLTags, SkipTo #... removeText = replaceWith("") scriptOpen, scriptClose = ...
0
votes
1answer
65 views

How to Separate Output Data

Here is my code: #------------------------------------------------------------------------------- # Name: Mocha Rotoscoping Via Blender # Purpose: Make rotoscoping more efficient # # ...
0
votes
2answers
97 views

How to pull specific information from an output in Python

So I have a code that gives an output, and what I need to do is pull the information out in between the commas, assign them to a variable that changes dynamically when called... here is my code: ...
0
votes
2answers
26 views

Parse a specific number of lines from a previously parsed value

I'm using pyparsing to ingest the gEDA schematic/symbol file format. Most is straight-forward, but I'm not sure how to match a number of following lines specified by an integer field on the initial ...
0
votes
0answers
178 views

Why is pyparsing not a recursive descent parser?

The wikipedia entry for recursive descent parsing judges that pyparsing is not recursive descent. The definition of recursive descent identifies these properties: Every nonterminal has a one-to-one ...
0
votes
2answers
249 views

PyParsing: Not all tokens passed to setParseAction()

I'm parsing sentences like "CS 2110 or INFO 3300". I would like to output a format like: [[("CS" 2110)], [("INFO", 3300)]] To do this, I thought I could use setParseAction(). However, the print ...
0
votes
3answers
371 views

pyparsing question

This code works: from pyparsing import * zipRE = "\d{5}(?:[-\s]\d{4})?" fooRE = "^\!\s+.*" zipcode = Regex( zipRE ) foo = Regex( fooRE ) query = ( zipcode | foo ) tests = [ "80517", "C6H5OH", ...
0
votes
2answers
271 views

How to use pyparsing to parse and hash strings enclosed by special characters?

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 ...