this module can help you work with arrays
Project description
pyarrlib
A small Python utility library for working with arrays and nested array structures.
This project provides simple helper functions for reversing arrays, computing numeric aggregates, counting nested leaves, flattening nested structures, sorting, filtering, and solving small systems of linear equations. It also includes utilities for working with dictionaries.
Features
Array Functions
reverse_arr(array)— reverse a one-dimensional sequencesum_arr(array)— compute the sum of numeric valuesmultiplication_arr(array)— compute the product of numeric valuesmin(array)— find the smallest numeric value in a sequencemax(array)— find the largest numeric value in a sequencearifmetic_mean(array)— compute the arithmetic mean of numeric valuessort(array)— sort the array in-placesame(array1, array2)— find common elements between two arraysstep_filter(array, step, first_num=0)— filter array with steptype_filter(array, type_filt)— filter elements by typerange_arr(array, first, last)— filter numbers within range (first < x < last)range_other(array, first, last)— filter numbers outside rangechunk(array, size)— create chunks of repeated elementsmv(array, i1, i2)— move element from index i1 to i2hw_times(array, key)— count occurrences of keynot_same(array, array2)— find elements not common between arrays
Nested Array Functions
leafs(array)— flatten nested integer arraysnum_of_leafs(array)— count integer leaf nodes in nested arrayslen_arr(array)— count all scalar leaves in nested arraysequation_system(full_matrix)— solve 2×2 or 3×3 linear systems using determinantsflatten(array)— flatten nested structures (supports int, str, float, bool, tuples)
Dictionary Functions
max(d)— find the maximum value in dictionary valuesmin(d)— find the minimum value in dictionary valuesis_key_value_in_dict(d, key, value)— check if key-value pair existskey_sum(d)— sum numeric values in dictionarykey_multiplication(d)— multiply numeric values in dictionarysame_keys(d1, d2)— find common keys between dictionariessame_values(d1, d2)— find common values between dictionaries
Installation
From the repository root, install in editable mode:
python -m pip install -e .
If you prefer not to install, you can run code directly from this project by ensuring the repository root is on PYTHONPATH.
Usage
from pyarrlib import (
ArrayTypeError,
IsNotArrayError,
arifmetic_mean,
chunk,
equation_system,
flatten,
hw_times,
is_key_value_in_dict,
key_sum,
leafs,
len_arr,
max,
min,
multiplication_arr,
mv,
not_same,
num_of_leafs,
range_arr,
reverse_arr,
same,
sort,
step_filter,
sum_arr,
type_filter,
)
print(reverse_arr([1, 'hello', 3, True]))
# [True, 3, 'hello', 1]
print(sum_arr([1, 5, 4, 3, 8]))
# 21
print(multiplication_arr([4, 1, 2, 5, 7]))
# 280
print(min([1, 3, 6, -3, 2]))
# -3
print(arifmetic_mean([2, 4, 6]))
# 4.0
nested = [[1, 2, [3]], [4, [5, 6]]]
print(leafs(nested))
# [1, 2, 3, 4, 5, 6]
print(num_of_leafs(nested))
# 6
print(len_arr(nested))
# 6
system = [
[2, -1, 1],
[1, 1, 1],
[1, 2, -1],
]
print(equation_system([row + [value] for row, value in zip(system, [1, 2, 3])]))
# Additional examples
arr = [1, 2, 3, 4, 5]
sort(arr)
print(arr) # [1, 2, 3, 4, 5]
print(chunk([1, 2], 3)) # [[1, 1, 1], [2, 2, 2]]
print(hw_times([1, 2, 2, 3], 2)) # 2
print(type_filter([1, 'a', 2.0, True], int)) # [1, True]
d = {'a': 1, 'b': 2}
print(key_sum(d)) # 3
print(is_key_value_in_dict(d, 'a', 1)) # True
API Reference
Exceptions
ArrayTypeError— raised when array contains unsupported element types for numeric operationsIsNotArrayError— raised when input is not an array-like structure
Array Functions
reverse_arr(array)— Return a new sequence with the elements in reverse order.sum_arr(array)— Return the sum of numeric values in the array. ReturnsArrayTypeErrorif non-numeric elements present.multiplication_arr(array)— Return the product of numeric values in the array. ReturnsArrayTypeErrorif non-numeric elements present.min(array)— Return the smallest value from a one-dimensional sequence. RaisesArrayTypeErrorfor non-numeric.max(array)— Return the largest value from a one-dimensional sequence. RaisesArrayTypeErrorfor non-numeric.arifmetic_mean(array)— Return the arithmetic mean of numeric values in the array.sort(array)— Sort the array in-place.same(array1, array2)— Return common elements between two arrays.step_filter(array, step, first_num=0)— Return sliced array with given step.type_filter(array, type_filt)— Return elements of specified type.range_arr(array, first, last)— Return numeric elements within the range (first < x < last).range_other(array, first, last)— Return numeric elements outside the range.chunk(array, size)— Create list of lists where each element is repeated 'size' times.mv(array, i1, i2)— Move element from index i1 to i2 in-place.hw_times(array, key)— Count occurrences of key in array.not_same(array, array2)— Return elements not common between the arrays.
Nested Array Functions
leafs(array)— Return a flat list containing all integer leaf values from a nested array structure.num_of_leafs(array)— Count integer leaf nodes recursively in a nested array structure.len_arr(array)— Count all scalar leaf values in a nested array structure. Supported scalar types includeint,str,float, andbool.equation_system(full_matrix)— Solve a 2×2 or 3×3 system of linear equations supplied as an augmented matrix. Returns a list of solution values or the string"has no solution"when the determinant is zero.flatten(array)— Return a flattened list of all scalar elements, preserving nested structures as lists.
Dictionary Functions
max(d)— Return the maximum value from dictionary values.min(d)— Return the minimum value from dictionary values.is_key_value_in_dict(d, key, value)— Return True if the key-value pair exists in the dictionary.key_sum(d)— Return the sum of numeric values in the dictionary.key_multiplication(d)— Return the product of numeric values in the dictionary.same_keys(d1, d2)— Return list of common keys between two dictionaries.same_values(d1, d2)— Return list of common values between two dictionaries.
Running the included checks
The repository includes a simple assertion-based test file.
python tests/test.py
Project structure
setup.py— package metadata and build configurationREADME.md— project documentationsrc/pyarrlib/arrpy.py— array utility functionssrc/pyarrlib/multidim_arr.py— nested array traversal functionssrc/pyarrlib/dict.py— dictionary utility functionssrc/pyarrlib/_checks.py— validation and error classessrc/pyarrlib/__init__.py— package initializationtests/test.py— example assertions covering core behavior
License
This project is licensed under MIT.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyarrlib-0.2.2rc0.tar.gz.
File metadata
- Download URL: pyarrlib-0.2.2rc0.tar.gz
- Upload date:
- Size: 8.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.15.0a5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25a2c1064ab43ee2e38ea2772a0b237ee9f5e5593e4077f87b9b4aa41256820f
|
|
| MD5 |
cc78ae4854f91b8a4253642fb3bb182a
|
|
| BLAKE2b-256 |
1b69cbb404254da6ef0d5e979162787fe611299df466a9662664fd5262c15765
|
File details
Details for the file pyarrlib-0.2.2rc0-py3-none-any.whl.
File metadata
- Download URL: pyarrlib-0.2.2rc0-py3-none-any.whl
- Upload date:
- Size: 7.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.15.0a5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca339565b8f85b4794e8be811a8eef0eb5f1c08f79afb5bb57709d98b859ea3f
|
|
| MD5 |
5fcfc4ea60a9465a33e5da76fd8cf9ab
|
|
| BLAKE2b-256 |
59abeccc09fff159f37c0565d177fac95c4b995c2b5fcb494ab43836c9de2e9c
|