rnumpy
An experiment in trying to define a core and cleaned-up NumPy API: RNumPy
Don't use this just yet! It will be ready for production use soon, but the API may still change in the near future.
The main goals of this project:
- Provide a package with NumPy functions that contain the essence of NumPy for end users. I.e. what would the NumPy API look like if we could remove functions and objects from it and move things around without worrying about backwards compatibility.
- Answer the question: "what's the minimal set of functions needed to form a core of numpy?"
(1) allows end users to use rnumpy instead of numpy, and thereby work with a much
easier to navigate package where they can be confident that the functions they use are
well-maintained and "best practice". In many cases, NumPy contains multiple ways of doing
things. Superceded functions are kept for backwards compatibility. Often users won't realize
that, and use a function that has a more modern alternative. Using rnumpy, they won't
have to worry about that.
Besides end users, (1) is also aimed at authors of NumPy-like libraries. It suggests a subset of the full NumPy API that makes sense to support.
(2) can form the basis of reimplementing other functions in terms of "core" functions.
An example may clarify this. To create an array filled with all the same values,
NumPy offers ones, zeros, empty, full, ones_like, zeros_like, empty_like,
full_like and ndarray.fill. The fundamental building blocks are empty and ndarray.fill.
So one could reimplement, e.g., ones as:
def ones(...):
return np.empty(...).fill(1)
Such implementations in terms of core functions is useful for ndarray subclass authors,
people porting NumPy to other platforms (e.g. WebAssembly), and probably other groups of
developers too.
See the docstring of rnumpy/__init__.py for more details.
Release files for rnumpy 0.0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| rnumpy-0.0.1.tar.gz | 6.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| rnumpy-0.0.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 18.6 kB
Release files / rnumpy-0.0.1.tar.gz
| Download URL | rnumpy-0.0.1.tar.gz |
|---|---|
| Size | 6.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
90b5bbeda89a23fc69201339a7f65cc3c63a37dd9e65e4632bbf8637be7a93e6
|
|
BLAKE2b-256 checksum How to use checksums |
fcabbfd4dd2a7e4ec0cfeb04850012a76f097e431e40d748493a05e4983e3162
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
python-requests/2.22.0
|
Release files / rnumpy-0.0.1-py3-none-any.whl
| Download URL | rnumpy-0.0.1-py3-none-any.whl |
|---|---|
| Size | 12.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
abfc7963133ecedf7a544bc676b3f8ab9bcba0fa9d1d02d57f9863c30a565321
|
|
BLAKE2b-256 checksum How to use checksums |
ab9fd867ad64288fc967834105fcadefd04e0ac56bfd02554eaecfc3c4daae95
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
python-requests/2.22.0
|