A small pure-python package for data structure relatedutility functions.
Project description
A small pure-python package for data strcture related utility functions.
from strct.dict import get_nested_val
>>> dict_obj = {'a': {'b': 7}}
>>> get_nested_val(('a', 'b'), dict_obj)
7
1 Installation
Install strct with:
pip install strct
2 Use
strct is divided into five sub-modules:
2.1 dict
Getting values from nested dicts in various ways; operations on number-valued dicts; merging, normalizing, reversing and printing dicts (nicely)
2.2 list
Index and element shifts that preserve order.
2.3 set
Getting a set element by a priority list.
2.4 sortedlist
Operations on sortedcontainers.SortedList objects.
2.5 hash
Provide cross-kernel stable hash functions that work for built-in data structures and types, and for any custom data structure complying with the iterable or dict schemes.
3 Contributing
Package author and current maintainer is Shay Palachy (shay.palachy@gmail.com); You are more than welcome to approach him for help. Contributions are very welcomed.
3.1 Installing for development
Clone:
git clone git@github.com:shaypal5/strct.git
Install in development mode with test dependencies:
cd strct
pip install -e ".[test]"
3.2 Running the tests
To run the tests, use:
python -m pytest --cov=strct --doctest-modules
3.3 Adding documentation
This project is documented using the numpy docstring conventions, which were chosen as they are perhaps the most widely-spread conventions that are both supported by common tools such as Sphinx and result in human-readable docstrings (in my personal opinion, of course). When documenting code you add to this project, please follow these conventions.
4 Credits
Created by Shay Palachy (shay.palachy@gmail.com).
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 strct-0.0.16.tar.gz.
File metadata
- Download URL: strct-0.0.16.tar.gz
- Upload date:
- Size: 27.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fbfff24ebbdcf97bee1a4486fb832b62dcca78138b4dcdeecfebbce61879a8f
|
|
| MD5 |
8dd468ddddd6d17ce4c2f1580d0b1da0
|
|
| BLAKE2b-256 |
87156a2579c22d2fb8f6387fb420209952c3faffd8331e66b6b921b552d9013d
|
File details
Details for the file strct-0.0.16-py2.py3-none-any.whl.
File metadata
- Download URL: strct-0.0.16-py2.py3-none-any.whl
- Upload date:
- Size: 16.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8a50d7822ef5efe077a995a03b455e5578d7b689d70dbf574abcb0f6132438d
|
|
| MD5 |
534f63dffa7a2adadb8dcbd4f2e2df27
|
|
| BLAKE2b-256 |
1521c26b82d2b17bdb248817422422473ea5248d1e54ca7e642f46db257b4140
|