Tagged Questions
0
votes
0answers
33 views
Parser not working as expected
I started experimenting with PLY recently. I have the following code:
import ply.lex as lex
# List of token names
tokens = (
'BASIC',
'ACTION',
'RESULT',
)
t_BASIC = ...
2
votes
1answer
53 views
Pyparsing Token Source Range
How do I extract the source range (begin and end position) of a grammar rule match programmatically in Pyparsing? I can't use setParseAction for this (sub-)rule since I'm inspecting the parse tree ...
0
votes
0answers
45 views
PocketSphinx Language model
I am working with pocketsphinx using gstreamer and am having some issues with recognition. Among the words I need recognized are longer strings of words. For example, a sample of the word list would ...
1
vote
1answer
62 views
Parsing a simple extension of latex: grammar, recursive descent, pyParsing?
I would like to do a small extension of latex syntax.
There are pure latex ways to avoid this parsing exercise, and I know them.
The goal of this question is to solve the following parsing problem.
...
1
vote
1answer
133 views
Including a grammar with CMU pocketsphinx gstreamer
I have been looking into CMU pocketsphinx for voice recognition. Ideally I want to be able to recognize sentence structures along the line of "Please pick up " where is a large list of objects ...
0
votes
0answers
81 views
Make Pyparsing handle Left-Recursive Grammar Rules
I'm currently implementing an Ada 2005 parser using Pyparsing and the reference manual grammar rules. We need this in order to analyze and transform parts of our aging Ada-codebase to C/C++.
However, ...
2
votes
1answer
171 views
Stack Overflow when Pyparsing Ada 2005 Scoped Identifiers using Reference Manual Grammar
I'm currently implementing an Ada 2005 parser using Pyparsing and the reference manual grammar rules. We need this in order to analyze and transform parts of our aging Ada-codebase to C/C++.
Most ...
0
votes
1answer
83 views
Parsing Tree of python classes and applying a grammar
I'm trying to reduce a data file that is represented in a node-daughter structure. The data format is represented as the following:
( { [ GeoNode A, GeoNode B, GeoNode C ], GeoNode D }, { GeoNode E, ...
0
votes
1answer
464 views
checking if a sentence is grammatically correct using stanford parser [duplicate]
Is there any method to check if a sentence is grammatically correct or not using stanford parser? As of now am able to get the parse tree of a sentence using stanford parser. I got stuck here and ...
0
votes
0answers
83 views
Add attribute to nltk grammar python
I'm creating a function refine(grammar) witch holds certain objectives.
Check if the grammar is on the nonlexical() form.
IF TRUE, create two attributes
grammar_rules => contains a list of all ...
2
votes
1answer
46 views
How do you parse a literal asterisk with pyparsing?
I'm currently parsing a string, which can contain wildcards.
My grammar only works, if you put the asterisk in quotes.
How do you specify a literal *.
selection = QuotedString('"') | Word(printables) ...
0
votes
2answers
39 views
Django DB table names, plural double s
In Rails when creating DB tables from the models, Product becomes Products, Status becomes Statuses etc. Django does not fully seem to have that inbuilt grammar functionality.
Product becomes ...
0
votes
1answer
78 views
good python strategy for parsing grammar-based file format
I've written quite a few simple importers for 3D file formats like PLY and OBJ, which seem to have a very state-based per-line structure making parsing very easy. My friend wanted me to implement a ...
1
vote
0answers
64 views
Abstract grammar of the AST in Python : questions for “FunctionDef” et “arguments”
I'm trying to use the ast module in Python 3 to parse some Python code.
For now I'm only coding a simple node visitor that will output the original code.
I have difficulties to convert some nodes of ...
1
vote
2answers
453 views
How to implement Backus-Naur Form in Python
I know there are some vaguely similar questions already relating to BNF (Backus-Naur Form) grammars in Python, but none of them help me much in terms of my application.
I have multiple BNFs that I ...
1
vote
2answers
62 views
Python 2D Array can't work. Help~
_R = [0] * 5
R = [_R] * 4
num_user = 0
num_item = 0
for i in range(8):
s = input().split()
for j in range(4):
s[j] = int(s[j])
R[s[0]][s[1]] = s[2]
print(s[0], s[1], ...
2
votes
2answers
198 views
How to make a pyparsing grammar dependent on an instance attribute?
I’ve got a pyparsing issue that I have spent days trying to fix, with no luck.
Here’s the relevant pseudocode:
class Parser(object):
def __init__(self):
self.multilineCommands = []
...
2
votes
1answer
111 views
Where can I find the formal grammar of list comprehension in Python?
Where can I find the formal grammar of Python, specifically, List Comprehension ?
1
vote
1answer
100 views
Yacc - Equation Parser with function support
i'm trying to write an equation parser for equations like: 4*sin(1+cos(10/2))
I use lex to get the tokens and yacc as the parser module.
My actual problem now is that i dont know how to define the ...
0
votes
1answer
130 views
python: trailing comma in function call, yes/no?
What is better to do?
self.call(1, True, "hi")
or
self.call(1, True, "hi",)
And what in the following cases:
self.call(
1,
True,
"hi"
)
or
self.call(
1,
True,
"hi",
)
...
2
votes
1answer
213 views
How to match parentheses / brackets in pyparsing
I have a grammar token specified as:
list_value = Suppress(oneOf("[ (")) + Group(
delimitedList(string_value | int_value))("list") + Suppress(oneOf("] )"))
However, this obviously allows (foo, ...
3
votes
1answer
2k views
How to check whether a sentence is correct (simple grammar check in Python)?
How to check whether a sentence is valid in Python?
Examples:
I love Stackoverflow - Correct
I Stackoverflow love - Incorrect
1
vote
2answers
248 views
Python 3.2 Grammar Specification - Function Call
This is in reference to Python 3.2. Pertinent grammar rules are as follows (http://docs.python.org/py3k/reference/grammar.html):
power: atom trailer* ['**' factor]
atom: ('(' ...
3
votes
2answers
265 views
LALR grammar, trailing comma and multiline list assignment
I'm trying to produce a LALR grammar for a very simple language composed of assignments. For example:
foo = "bar"
bar = 42
The language should also handle list of values, for example:
foo = 1, 2, ...
0
votes
3answers
73 views
an error in function definition won't be detected in Python?
Here is a python module,
#a.py
def bar():
print x #x not defined, apparently will result in an error
def foo():
pass
if __name__ == '__main__':
foo()
The above module can be run ($ ...
2
votes
1answer
289 views
How to modify the Python source code in order to add a new AST node?
For example, if I was to create a node called "Something" that I wanted to use in a Python AST tree, where and which changes would I have to add to Python source code in order to do that?
I know ...
1
vote
2answers
222 views
Using a grammar parser for Python and constructing files from the tree
I have a custom made grammar for an interpreted language and I am looking for advice on a parser which will create a tree which I can query. From the structure I would like to be able to generate ...
18
votes
3answers
532 views
Selecting the most fluent text from a set of possibilities via grammar checking (Python)
Some background
I am a literature student at New College of Florida, currently working on an overly ambitious creative project. The project is geared towards the algorithmic generation of poetry. ...
6
votes
1answer
622 views
Some NLP stuff to do with grammar, tagging, stemming, and word sense disambiguation in Python
Background (TLDR; provided for the sake of completion)
Seeking advice on an optimal solution to an odd requirement.
I'm a (literature) student in my fourth year of college with only my own guidance ...
2
votes
2answers
411 views
Python ast to dot graph
I'm analyzing the AST generated by python code for "fun and profit", and I would like to have something more graphical than "ast.dump" to actually see the AST generated.
In theory is already a tree, ...
4
votes
3answers
294 views
pyparsing - parse xml comment
I need to parse a file containing xml comments. Specifically it's a c# file using the MS /// convention.
From this I'd need to pull out foobar, or /// foobar would be acceptable, too. (Note - this ...
2
votes
1answer
177 views
Python PLY - something wrong with this grammar?
I am trying to use Python PLY for a simple expression parser, and I can't get it to work. The code is available at bitbucket, but the offending parts are:
First, the definitions:
def ...
1
vote
2answers
1k views
How do I do dependency parsing in NLTK?
Going through the NLTK book, it's not clear how to generate a dependency tree from a given sentence.
The relevant section of the book:sub-chapter on dependency grammar gives an example figure but it ...
0
votes
1answer
234 views
Generating all terminal strings in Python with grammar/rules?
I'm trying to generate all terminal strings from a given file up to a certain length. So for instance, if you have something like
A = A B
A = B
B = 0
B = 1
Then you would get something like
0
1
0 ...
6
votes
2answers
2k views
How do I get a set of grammar rules from Penn Treebank using python & NLTK?
I'm fairly new to NLTK and Python. I've been creating sentence parses using the toy grammars given in the examples but I would like to know if it's possible to use a grammar learned from a portion of ...
4
votes
1answer
323 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 ...
4
votes
2answers
492 views
Parsing SPARQL queries
I need to test for a certain structural property of a couple million SPARQL queries, and for that I need the structure of the WHERE statement. I'm currently trying to use fyzz to do this, but ...
3
votes
1answer
306 views
using LEPL to parse a Boolean search query
I'm trying to write a LEPL grammar to describe a Boolean search language. This is what I have so far:
from lepl import *
text = String() | Word()
tail = ~Lookahead('AND') & ~Lookahead('OR') ...
2
votes
2answers
429 views
Is there a python library for custom autocompletion?
Is there a generic library that would allow me to have autocompletion according to a custom grammar and item list?
Here's an example of what I am looking for.
Grammar:
You can munch apples and ...
10
votes
2answers
2k views
English grammar for parsing in NLTK
Is there a ready-to-use English grammar that I can just load it and use in NLTK? I've searched around examples of parsing with NLTK, but it seems like that I have to manually specify grammar before ...
2
votes
3answers
298 views
Grammar inference library?
What are the best (or any) open source libraries for regular or context-free grammar inference from a set of examples believed to be generated by a common grammar? I'd prefer a good library in Java, ...
1
vote
2answers
422 views
How would I go about categorizing sentences according to tense (present, past, future, etc.)?
I want to parse a text and categorize the sentences according to their grammatical structure, but I have a very small understanding of NLP so I don't even know where to start.
As far as I have read, ...
1
vote
1answer
431 views
yacc fails to reduce (Python Lex-Yacc)
I'm trying to write a fairly simple grammar with PLY (python implementation of yacc), and am having trouble getting yacc to reduce strings of tokens when I want it to.
I want to interpret a series ...
7
votes
3answers
2k views
Combining a Tokenizer into a Grammar and Parser with NLTK
I am making my way through the NLTK book and I can't seem to do something that would appear to be a natural first step for building a decent grammar.
My goal is to build a grammar for a particular ...
7
votes
8answers
4k views
Efficient Context-Free Grammar parser, preferably Python-friendly
I am in need of parsing a small subset of English for one of my project, described as a context-free grammar with (1-level) feature structures (example) and I need to do it efficiently .
Right now ...
4
votes
2answers
606 views
How is generated the python grammar and how the interpreter understand it
I wonder how is generated the grammar of the Python language and how it is understood by the interpreter.
In python, the file graminit.c seems to implement the grammar, but i don't clearly understand ...
5
votes
1answer
631 views
Implementing parser for markdown-like language
I have markup language which is similar to markdown and the one used by SO.
Legacy parser was based on regexes and was complete nightmare to maintain, so I've come up with my own solution based on ...
4
votes
3answers
532 views
How does Python variable scoping works?
This wants me to dig deeper in Python sources, but since there are many people on SO that already done that, I would love to hear their pointers.
>>> import os
>>> def scope():
... ...
4
votes
2answers
325 views
How does the right-shift operator work in a python print statement?
I've seen someone using "print" with ">>" to write stuffs into a file:
In [7]: with open('text', 'w') as f:
...: print >> f, "Hello, world!"
...:
In [8]: !type text
Hello, world!
...
6
votes
2answers
604 views
How to generate random html document
I'd like to generate completely random piece of html source, possibly from a grammar. I want to do this in python but I'm not sure how to proceed -- is there a library that takes a grammar and just ...