Extended set operations: algebraic, functional, and utilities on top of Python's built-in set.
- Operator overloads:
+union,*cartesian product,**n-fold cartesian,@relation composition - Algebraic utilities:
powerset,cartesian,complement,disjoint,partition,closure - Functional utilities:
map,filter,reduce, andflatten - Drop-in feel: Built directly on top of
set
pip install bettersetOr with uv:
uv add bettersetfrom betterset import BetterSet as S
A = S({1, 2, 3})
B = S({3, 4})
# Operators
assert (A + B) == {1, 2, 3, 4} # union via +
assert (A * {"x", "y"}) == {(1, "x"), (1, "y"), (2, "x"), (2, "y"), (3, "x"), (3, "y")}
assert (S({1, 2}) ** 2) == {(1, 1), (1, 2), (2, 1), (2, 2)}
assert (S({(1, 2), (2, 3)}) @ S({(2, 5), (3, 7)})) == {(1, 5), (2, 7)}
# Algebraic
ps = A.powerset() # set of frozensets
assert frozenset({1, 2}) in ps
assert A.disjoint({4, 5}) is True
assert A.complement({1, 2, 3, 4, 5}) == {4, 5}
parts = A.partition(2) # partitions into 2 non-empty blocks
# Functional
assert A.map(lambda x: x % 2) == {0, 1}
assert A.filter(lambda x: x >= 2) == {2, 3}
assert A.reduce(lambda acc, x: acc + x, 0) == 6
assert S.flatten([[1, 2], {2, 3}, (3, 4)]) == {1, 2, 3, 4}
# Cartesian as method
assert A.cartesian({"x"}) == {(1, "x"), (2, "x"), (3, "x")}
# Closure under an operation
def step(x: int):
return [x + 1] if x < 3 else []
assert S({1}).closure(step) == {1, 2, 3}-
Operators
A + B→ unionA * B→ cartesian product of elements as tuplesA ** n→ n-fold cartesian product (A ** 0 == {()})A @ B→ relation composition whenAandBare sets of pairs- In-place variants:
+=,*=
-
Algebraic methods
powerset() -> BetterSet[FrozenSet[T]]cartesian(other: Iterable[U]) -> BetterSet[tuple[T, U]]disjoint(other: Iterable[T]) -> boolcomplement(universe: Iterable[T]) -> BetterSet[T]partition(k: int) -> BetterSet[tuple[tuple[T, ...], ...]]closure(op: Callable[[T], Iterable[T]]) -> BetterSet[T]
-
Functional methods
map(func: Callable[[T], U]) -> BetterSet[U]filter(predicate: Callable[[T], bool]) -> BetterSet[T]reduce(func: Callable[[U, T], U], initial: Optional[U] = None) -> U@classmethod flatten(iterable: Iterable[Union[Iterable[T], T, None]], *, skip_none: bool = True) -> BetterSet[T]
Notes on flatten:
- Strings/bytes/bytearray/memoryview are treated as atomic values.
- Other iterables are flattened (e.g., frozenset, numpy arrays).
- Mappings iterate keys by default; use
mapping.items()for key/value pairs. Nonevalues are skipped by default (skip_none=True).
- Python 3.8+
# Clone the repository
git clone https://github.com/izzet/betterset.git
cd betterset
# Install with uv (uses uv.lock for reproducible builds)
uv sync --group dev
# Set up pre-commit hooks (recommended)
uv run pre-commit install
# Run tests
uv run pytest
# Format code
uv run ruff format .
# Check linting
uv run ruff check .
# Build package
uv buildNote: This project uses uv.lock for reproducible dependency management. The lock file is committed to ensure all developers and CI/CD use identical dependency versions.
Pre-commit hooks: The project includes pre-commit hooks that automatically format code, check linting, and run tests before each commit to maintain code quality.
MIT License. See LICENSE file for details.
Contributions are welcome! Please feel free to submit a Pull Request.