Range object for any type for Python.
Project description
range-anytype
Usage
This package is using for Range object for any type.
How to use it
import it by: from range_anytype import Range, ProtectedRange
. No any additional modules or packages will be installed. If you cannot install it by pip, please download the source and extract it into sys.path.
To see examples, please visit example.py, or type from range_anytype import example
.
Range
Create a range for any type that supports addition calculation.
ProtectedRange
Create a range for any type that supports addition and subtraction calculation. This can protect program because it detects the supporting of subtraction of the type. Some types like str
, list
, tuple
, only support addition, not support subtraction.
Cautions
If you are using Python 2.1 or lower, it will import from py1compa.py (means "Python 1's compatible"). If you want to iter the object, please define these functions if the Python version does not have iter
or next
function:
iter = lambda obj: obj.__iter__()
next = lambda obj: obj.next()
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
File details
Details for the file range-anytype-0.5.12.342184b0.tar.gz
.
File metadata
- Download URL: range-anytype-0.5.12.342184b0.tar.gz
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3487d5096e610ef6f73424a2b9cd75b0160fbc4314712007b7bd412d6089b3ce |
|
MD5 | 37c9215249cc5a9b7d51d63dec71f24c |
|
BLAKE2b-256 | 850af60e7c7a97ab6084fc830364496a360f210cdf499af7354baca296455b47 |