Simple class that allows writing lists and dicts as heredoc strings
Project description
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
Built Distribution
File details
Details for the file iterstring-1.2.0.tar.gz
.
File metadata
- Download URL: iterstring-1.2.0.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.25.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 146a7120a3173aa3f400ecb75c60cfa0febf364bf3455382c9e90bdbb146a2c7 |
|
MD5 | 6dcb94339fd6a64b6876d3f024b834f0 |
|
BLAKE2b-256 | 2a15712efe7b13943fbab019241091e3067ff1f5e9dc35ec971cb54ac856d0cb |
File details
Details for the file iterstring-1.2.0-py2.py3-none-any.whl
.
File metadata
- Download URL: iterstring-1.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 5.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.25.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4f75712cf903ef32f2c65c5fe35e1a39362dd3e4f4ede93a49abfeb8f85ceb9b |
|
MD5 | 4151c4035f46eb87e363c5956a109c8d |
|
BLAKE2b-256 | 487e3b86be0573563d97d6c905f1e49cc75793bdb6fec07e7c2b2582b862e9f3 |