Skip to main content

pyparser is a collection of classes to make it easier to parse text data in a pythonic way.

Project description

PyParser is a simple library that makes it easier to parse files. I wrote it when I needed to parse a ton of string output and files, and got very tired of writing stuff like the following

data = {}

for line in output:

line = line.strip()

if not ‘:’ in line:

continue

key, value = line.split(‘:’, 1) data[key] = value

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

pyparser-0.2.tar.gz (4.0 kB view hashes)

Uploaded Source

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