Metadata-Version: 2.4
Name: lazyme
Version: 0.0.30
Summary: Lazy python recipes
Project-URL: Homepage, https://github.com/alvations/lazyme
Author: alvations
License: MIT
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.9
Provides-Extra: dev
Requires-Dist: pre-commit; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Requires-Dist: tqdm; extra == 'dev'
Requires-Dist: xxhash; extra == 'dev'
Provides-Extra: hashing
Requires-Dist: tqdm; extra == 'hashing'
Requires-Dist: xxhash; extra == 'hashing'
Provides-Extra: wiki
Requires-Dist: ujson; extra == 'wiki'
Description-Content-Type: text/markdown

# lazyme
Lazy python recipes.


Install
====

```
pip install -U lazyme
```


Usage
====

```python
$ cat test.txt
This is a text block start
This is the end

And this is another
with more than one line
and another line.

$ python
>>> from lazyme import per_section
>>> list(per_section(open('test.txt')))
[['This is a text block start', 'This is the end'], ['And this is another', 'with more than one line', 'and another line.']]
```
