Type hints for NumPy.
Project description
💡 Type hints for NumPy
💡 Type hints for pandas.DataFrame
💡 Extensive dynamic type checks for dtypes shapes and structures
Example of a hinted numpy.ndarray:
>>> from nptyping import NDArray, Int, Shape
>>> arr: NDArray[Shape["2, 2"], Int]
Example of a hinted pandas.DataFrame:
>>> from nptyping import DataFrame, Structure as S
>>> df: DataFrame[S["name: Str, x: Float, y: Float"]]
⚠️pandas.DataFrame is not yet supported on Python 3.11.
Installation
| Command | Description |
|---|---|
pip install nptyping |
Install the basics |
pip install nptyping[pandas] |
Install with pandas extension (⚠️Python 3.10 or lower) |
pip install nptyping[complete] |
Install with all extensions |
Instance checking
Example of instance checking:
>>> import numpy as np
>>> isinstance(np.array([[1, 2], [3, 4]]), NDArray[Shape["2, 2"], Int])
True
>>> isinstance(np.array([[1., 2.], [3., 4.]]), NDArray[Shape["2, 2"], Int])
False
>>> isinstance(np.array([1, 2, 3, 4]), NDArray[Shape["2, 2"], Int])
False
nptyping also provides assert_isinstance. In contrast to assert isinstance(...), this won't cause IDEs or MyPy
complaints. Here is an example:
>>> from nptyping import assert_isinstance
>>> assert_isinstance(np.array([1]), NDArray[Shape["1"], Int])
True
NumPy Structured arrays
You can also express structured arrays using nptyping.Structure:
>>> from nptyping import Structure
>>> Structure["name: Str, age: Int"]
Structure['age: Int, name: Str']
Here is an example to see it in action:
>>> from typing import Any
>>> import numpy as np
>>> from nptyping import NDArray, Structure
>>> arr = np.array([("Peter", 34)], dtype=[("name", "U10"), ("age", "i4")])
>>> isinstance(arr, NDArray[Any, Structure["name: Str, age: Int"]])
True
Subarrays can be expressed with a shape expression between square brackets:
>>> Structure["name: Int[3, 3]"]
Structure['name: Int[3, 3]']
NumPy Record arrays
The recarray is a specialization of a structured array. You can use RecArray
to express them.
>>> from nptyping import RecArray
>>> arr = np.array([("Peter", 34)], dtype=[("name", "U10"), ("age", "i4")])
>>> rec_arr = arr.view(np.recarray)
>>> isinstance(rec_arr, RecArray[Any, Structure["name: Str, age: Int"]])
True
Pandas DataFrames
Pandas DataFrames can be expressed with Structure also. To make it more concise, you may want to alias Structure.
>>> from nptyping import DataFrame, Structure as S
>>> df: DataFrame[S["x: Float, y: Float"]]
More examples
Here is an example of a rich expression that can be done with nptyping:
def plan_route(
locations: NDArray[Shape["[from, to], [x, y]"], Float]
) -> NDArray[Shape["* stops, [x, y]"], Float]:
...
More examples can be found in the documentation.
Documentation
-
User documentation
The place to go if you are using this library. -
Release notes
To see what's new, check out the release notes. -
Contributing
If you're interested in developing along, find the guidelines here. -
License
If you want to check out how open source this library is.
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 nptyping-2.4.0.tar.gz.
File metadata
- Download URL: nptyping-2.4.0.tar.gz
- Upload date:
- Size: 20.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.28.1 requests-toolbelt/0.9.1 urllib3/1.26.12 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.5 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1e3dd0bb99b00f2c22f64e36b931893de37c5fb795be6ce2e30afecd76e9c9a
|
|
| MD5 |
b60d874d5cef4f0487ffbbda9dc3c1a8
|
|
| BLAKE2b-256 |
2a2679d6e5caa241e87f7dca488c2020304f8d750493d5e71c377a34d9e489c1
|
File details
Details for the file nptyping-2.4.0-py3-none-any.whl.
File metadata
- Download URL: nptyping-2.4.0-py3-none-any.whl
- Upload date:
- Size: 36.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.28.1 requests-toolbelt/0.9.1 urllib3/1.26.12 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.5 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7aa52fe4fb159a4c6314b2ad374fe706aac53d2e347ec97284e2c5f37143546c
|
|
| MD5 |
66841e2e2570aac647e0729d9f7a788c
|
|
| BLAKE2b-256 |
11e466920efbce907f49f725ce22f089c36c1cd98d3074c504b1a843327f3ed5
|