Skip to main content

Simple class that allows writing lists and dicts as heredoc strings

Project description

https://img.shields.io/pypi/v/iterstring.svg https://img.shields.io/travis/datagazing/iterstring.svg Documentation Status

Simple class that allows writing lists and dicts as heredoc strings

  • Write lists as strings with one line per element

  • Same for dictionaries, but use first token on each line as key

Features

  • Handles comments (using # characters)

  • Strips away extraneous whitespace with reasonable defaults (configurable)

  • Coerce items to numbers where possible (see coerce)

  • Iterating over the object treats it like a list

  • Indexing the object treats it like a dictionary

  • listr and distr helper functions provide simple interfaces

Examples

A simple use case:

>>> from iterstring import listr # or distr
>>> some_list = listr('''
item one # with a comment
  2
three
''')
>>> some_list
['item one', 2, 'three']
>>> type(some_list)
<class 'list'>

Using the class directly:

>>> from iterstring import Istr
>>> asdf = Istr('''
item one # with a comment
  2
three
''')
>>> asdf.to_list()
['item one', 2, 'three']
>>> type(asdf)
<class 'iterstring.Istr'>

>>> [x for x in asdf]
['item one', 2, 'three']

>>> fdsa = Istr('''
item one # with a comment
  2 some other value
key3 3.14159
''')
>>> asdf.to_dict()
{'item': 'one', 2: 'some other value', 'key3': 3.14159}
>>> asdf.to_dict(coerce=False)
{'item': 'one', '2': 'some other value', 'key3': '3.14159'}

License

  • Free software: MIT license

Documentation

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

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

iterstring-1.2.0.tar.gz (11.5 kB view hashes)

Uploaded Source

Built Distribution

iterstring-1.2.0-py2.py3-none-any.whl (5.1 kB view hashes)

Uploaded Python 2 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