Float and custom indexes in Python
Project description
fidx
A module for float and custom indexes in Python
Allows to use float indexes to access lists, tuples, … in percentage (e.g. 0.5 is the middle item).
Allows also to add custom index types to existing types or to custom ones.
Installation
pip install fidx
Usage example
>>> import fidx
>>> fidx([1,2,3])[.5]
2
>>> l = fidx([1,2,3,4])
>>> l[:.5], l[.5:]
([1, 2], [3, 4])
>>> t = fidx.tuple(i//2 for i in range(0,10))
>>> t[.2:-.2:.2]
(1, 2, 3)
For more examples and usage, please refer to the Wiki.
About
Davide Peressoni – dpdmancul+fidx@gmail.com
Distributed under the MIT license. See LICENSE for more information.
Changelog
- version 1.1.0
- Fix of #1
- Added
float_idmethod to extended classes. - Added
fidx.float_idx_offunction.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
fidx-1.1.1.tar.gz
(5.8 kB
view details)
File details
Details for the file fidx-1.1.1.tar.gz.
File metadata
- Download URL: fidx-1.1.1.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6190b1998e65cbdea40ed56f227cb29ae356f05d1713f8205bcd831fdeff353
|
|
| MD5 |
eaeb9dae831102bf4a3cc343729ccfcf
|
|
| BLAKE2b-256 |
fba622c0a04a7da09507d64fd2433f702ecde45dc6e10d0b6c2e8e1a620ecb54
|