`cmeel-zlib` is a specialized Python package that provides a distribution of the `zlib` C library, packaged using `cmeel` (a CMake-based build system for Python wheels). Its primary purpose is to serve as a build dependency for other Python packages that are also built with `cmeel` and require the `zlib` C library. It does not offer a direct Python API. The current version is 1.3.1, with minor releases typically occurring every 2-3 months.
pip install cmeel-zlibVerified import paths — ran on the pinned version, not inferred.
After installing `cmeel-zlib`, you can use the standard Python `zlib` module. This package ensures that the underlying C `zlib` library is correctly provided and linked for efficient compression and decompression, especially when other `cmeel`-built extensions depend on it. This example demonstrates basic usage of the standard `zlib` module, which benefits from `cmeel-zlib`'s provision of the underlying C library.
To use `zlib` functionality in Python, rely on the standard library `import zlib`. `cmeel-zlib` ensures the underlying C library is available and properly linked for other `cmeel`-based extensions.
Ensure your build environment is clean or explicitly manage `LD_LIBRARY_PATH` (or equivalent environment variables) if you suspect conflicts. For most users, `pip install cmeel-zlib` should integrate smoothly, prioritizing its bundled `zlib`.
No dependency data recorded yet.