crosszip 
crosszip is a Python utility that makes it easy to apply a function to
all possible combinations of elements from multiple iterables. It
combines the power of the Cartesian product and functional programming
into a single, intuitive tool.
Additionally, @pytest.mark.crosszip_parametrize is a pytest marker
that simplifies running tests with all possible combinations of
parameter values.
Installation
| Package Manager | Installation Command |
|---|---|
| pip | pip install crosszip |
| uv | uv add crosszip |
Usage
Example of using crosszip:
# @pyodide
# Label Generation for Machine Learning
from crosszip import crosszip
def create_label(category, subcategory, version):
return f"{category}_{subcategory}_v{version}"
categories = ["cat", "dog"]
subcategories = ["small", "large"]
versions = ["1.0", "2.0"]
labels = crosszip(create_label, categories, subcategories, versions)
print(labels)
['cat_small_v1.0', 'cat_small_v2.0', 'cat_large_v1.0', 'cat_large_v2.0', 'dog_small_v1.0', 'dog_small_v2.0', 'dog_large_v1.0', 'dog_large_v2.0']
Example of using pytest marker crosszip_parametrize:
# @pyodide
# Testing Power Function
import math
import crosszip
import pytest
@pytest.mark.crosszip_parametrize(
"base",
[2, 10],
"exponent",
[-1, 0, 1],
)
def test_power_function(base, exponent):
result = math.pow(base, exponent)
assert result == base**exponent
print("Tests executed successfully.")
Tests executed successfully.
For more examples, check out the package documentation at: https://www.indrapatil.com/crosszip/
Key Features
- Flexible Input: Works with any iterables, including lists, tuples, sets, and generators.
- pytest Plugin: Provides a
crosszip_parametrizemarker for running tests with all possible combinations of parameter values. - Simple API: Minimalist, intuitive design for quick integration into your projects.
- Advanced patterns: See the Advanced Usage guide for memory efficiency strategies, managing test explosion, and testing validation functions across input types and edge cases.
License
This project is licensed under the MIT License.
Code of Conduct
Please note that the crosszip project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.
Acknowledgements
Hex sticker font is Rubik, and the image is taken from icon made by
Freepik and available at flaticon.com.
Release files for crosszip 1.4.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| crosszip-1.4.1.tar.gz | 6.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| crosszip-1.4.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 13.6 kB
Release files / crosszip-1.4.1.tar.gz
| Download URL | crosszip-1.4.1.tar.gz |
|---|---|
| Size | 6.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
43809d0dcb610ff213b62f83f8c34323f65c49feed36ec66c91e8e1356a859a7
|
|
BLAKE2b-256 checksum How to use checksums |
51b21f15569f0ff7d8dac75c444117d162a35d46883f662adc5ed80089052dbd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 5, 2026.
Transparency logRelease files / crosszip-1.4.1-py3-none-any.whl
| Download URL | crosszip-1.4.1-py3-none-any.whl |
|---|---|
| Size | 7.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
5680a3542ea67855133ee28592730e676f009c4de0ded97b89a33c0099fa2f2f
|
|
BLAKE2b-256 checksum How to use checksums |
7603d16bff6a9e082fe1ebd3a2db151e10c2dd62d7b12e9a1af286a123536e6c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 5, 2026.
Transparency log