Skip to main content

Parse a Python-like language

Project description

PLLParser

Parse a Python-like language

This package includes the following modules:

TreeNode.py

SYNOPSIS

node = TreeNode('menubar')

# --- A node can be used like a dictionary
#     It will, by default, have a key 'label' set
#        to the string provided

print(node['label'])

# menubar

node['mykey'] = 'myvalue'
print(f"node has {len(node)} keys")

# node has 2 keys

firstChild = TreeNode('firstchild')
node.appendChildNode(firstChild)

secondChild = TreeNode('secondchild')
node.appendChildNode(secondChild)

thirdChild = TreeNode('thirdchild')
node.appendChildNode(secondChild)

print(f"node has {node.numChildren()} children")

# node has 3 children

print(f"node has {node.numSiblings()} siblings")
print(f"firstChild has {firstChild.numSiblings()} siblings")

# node has 0 siblings
# firstChild has 2 siblings

RETokenizer.py

SYNOPSIS

tokzr = RETokenizer()
tokzr.add('INTEGER', r'\d+')
tokzr.add('STRING',  r'"([^"]*)"', 1)
tokzr.add('STRING',  r"'([^']*)'", 1)

lTokens = list(tokzr.tokens('"mystring"'
                           ' + '
                           "'other'"))
assert lTokens == [
	('STRING', 'mystring'),
	('OTHER',  '+'),
	('STRING', 'other'),
	]

PLLParser.py

SYNOPSIS

s = '''
	* menubar
		file
			new
			open
		edit
			undo
	* layout
		row
			EditField
			SelectField
'''
(tree, hSubTrees) = parsePLL(s)

assert len(hSubTrees) == 2

parserUtils.py

SYNOPSIS

See the file

Unit Tests

All unit tests appear at the end of the source file itself
They can be run using pytest

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

PLLParser-0.3.3.tar.gz (12.5 kB view hashes)

Uploaded Source

Built Distribution

PLLParser-0.3.3-py3-none-any.whl (14.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page