Skip to main content

Top-level package for iterstring.

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

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 functions are simplest interfaces

Examples

>>> from iterstring import Listr # or Distr

A simple use case:

>>> 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'}

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-0.1.0.tar.gz (10.7 kB view hashes)

Uploaded Source

Built Distribution

iterstring-0.1.0-py2.py3-none-any.whl (4.3 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