Metadata-Version: 2.1
Name: lazystream
Version: 0.1.0
Summary: Scala-inspired stream for lazy evaluation
Author-email: Tan Pinxi <tpinxi@gmail.com>
License: MIT License
Project-URL: Repository, https://github.com/FizzyAgent/lazystream
Keywords: stream,lazy,functional
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Lazy Stream

Lazy Stream is a library for lazy evaluation in Python. It is inspired by the Scala Stream class.

Lazy Stream allows you to store and chain operations on a finite or infinite sequence of values. The final result will only be computed when needed, for better memory and performance over conventional Python lists.
