Skip to main content

VERTICALTABLE structured text parser

Project description

This is an structured text parser.

format

example 1:

source:

[Q] This is a question.
[A] This is an answer.
[Q] This is a question2.
# This is comment
[A] This is an answer2.

parsed:

[
  {
    'Q': 'This is a question.',
    'A': 'This is an answer.',
  },
  {
    'Q': 'This is a question2.',
    'A': 'This is an answer2.',
  },
]
  • If the same key appeared, Next record.

  • Actuary, output is OrderedDict list. Not Dict list.

source:

[Key1]
Value1
[Key2]
Value2
----
[Key3]
Value3
next line
next line
[Key4]

Value4    4!

[Key5]
Value5

parsed:

[
  {
    'Key1': 'Value1',
    'Key2': 'Value2',
  },
  {
    'Key3': 'Value3\nnext line\nnext line',
    'Key4': 'Value4    4!',
    'Key5': 'Value5',
  }
  • Whitespace trimmed.

  • “—-” (Hyphens >= 4) is list separator.

usage

import verticaltable

fp = open('sample.txt')

parsed_list = verticaltable.loads(fp.read())

parsed_list2 = verticaltable.load(open('sample2.txt'))

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

verticaltable-0.1.0.tar.gz (1.7 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