Metadata-Version: 2.1
Name: biglist
Version: 0.8.2
Summary: The package `biglist <https://github.com/zpz/biglist>`_ provides persisted, out-of-memory Python data structures
Author-email: Zepu Zhang <zepu.zhang@gmail.com>
Requires-Python: >=3.8
Description-Content-Type: text/x-rst
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: upathlib >= 0.8.0
Requires-Dist: deprecation
Requires-Dist: pyarrow >= 10.0.0
Requires-Dist: typing-extensions
Requires-Dist: sphinx ; extra == "doc"
Requires-Dist: numpydoc ; extra == "doc"
Requires-Dist: pydata-sphinx-theme ; extra == "doc"
Requires-Dist: upathlib[gcs] >= 0.8.0 ; extra == "gcs"
Requires-Dist: google-auth ; extra == "gcs"
Requires-Dist: lz4 ; extra == "lz4"
Requires-Dist: boltons ; extra == "test"
Requires-Dist: mypy ; extra == "test"
Requires-Dist: ruff ; extra == "test"
Requires-Dist: pytest-asyncio ; extra == "test"
Requires-Dist: zstandard ; extra == "zstandard"
Project-URL: Source, https://github.com/zpz/biglist
Provides-Extra: doc
Provides-Extra: gcs
Provides-Extra: lz4
Provides-Extra: test
Provides-Extra: zstandard

biglist
=======

The package ``biglist`` provides persisted, out-of-memory Python data structures
that implement the ``Sequence`` and ``Iterable`` interfaces with the capabilities of
concurrent and distributed reading and writing.
The main use case is processing large amounts of data that can not fit in memory.
Persistence can be on local disk or in cloud storage.


Read the `documentation <https://biglist.readthedocs.io/en/latest/>`_.


Reference
---------

A very early version of this work is described in `a blog post <https://zpz.github.io/blog/biglist/>`_.

Status
------

Production ready.


Python version
--------------

Development and testing were conducted in Python 3.8 until version 0.7.8.
Starting with 0.7.9, development and testing happen in Python 3.10.
Code continues to NOT intentionally use features beyond Python 3.8.

