Simple class, that simplify usage of slices in __getitem__
Project description
slice-match
Simple class, that simplify usage of slices in __getitem__.
Available on PyPi: https://pypi.org/project/slice-match/
Installation
Install with pip:
pip install -U slice-match
Requirements
Python 3.10 and newer
Description
It's just a little trick, that allows you to do:
class custom_indexed:
def __getitem__(self, index):
match index:
case int(s):
print('this is "me[0]"-like expression')
case Slice(int(s)):
# note, this also matches "me[0:<Any>:<Any>]"-like
print('this is "me[0:]"-like expression')
case Slice(int(start), int(stop)):
# note, this also matches "me[0:5:<Any>]"-like
print('this is "me[0:5]"-like expression')
case Slice(int(start), int(stop), int(stride)):
print('this is "me[0:5:2]"-like expression')
case Slice(start, None, stride):
print('this is "me[<Any>::<Any>]"-like expression')
case Slice(start=12):
print('this is "me[12:<Any>:<Any>]"-like expression')
Performance drop
Using Slice cause ~2x performance drop, compared with using slice.
Simple benchmark notebook can be found here: https://github.com/SaelKimberly/slice-match/blob/main/slice-match.ipynb
So, readability improved (over 9000% ;) ), but performance slightly drops.
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 Distributions
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 slice_match-0.2.0-py3-none-any.whl.
File metadata
- Download URL: slice_match-0.2.0-py3-none-any.whl
- Upload date:
- Size: 3.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a1cdfc99701cad24d86d4a71e5ba5caefefe851b0bf728fc4dae93776e6a38e
|
|
| MD5 |
2719fd14d1673e095b89d1d4131fc740
|
|
| BLAKE2b-256 |
da8cdc05def34ffbf24d40ec3c21878607288b6a8cc48867ff5f548160dce465
|