Top "Ply" questions

PLY is an implementation of lex and yacc parsing tools for Python.

Python - Display 3D Point Cloud

I have a .PLY file that contains a 3D Point Cloud: I want to plot it and visualize it in …

python 3d point-cloud-library point-clouds ply
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 …

python parsing nlp pyparsing ply
md5 module error

I'm using an older version of PLY that uses the md5 module (among others): import re, types, sys, cStringIO, md5, …

python module md5 ply
How to Count Unique rows in a data frame?

I have a data frame in R which has a lot of duplicate records. I am interested in finding out …

r dataframe dplyr aggregate ply
Ply Lex parsing problem

I'm using ply as my lex parser. My specifications are the following : t_WHILE = r'while' t_THEN = r'then' t_ID = …

parsing lex ply
How to write a regular expression to match a string literal where the escape is a doubling of the quote character?

I am writing a parser using ply that needs to identify FORTRAN string literals. These are quoted with single quotes …

python regex fortran ply