https://github.com/datumbrain/numpy-writer-go
Go writer for Numpy files using `.npz` format.
https://github.com/datumbrain/numpy-writer-go
Last synced: 9 months ago
JSON representation
Go writer for Numpy files using `.npz` format.
- Host: GitHub
- URL: https://github.com/datumbrain/numpy-writer-go
- Owner: datumbrain
- Created: 2025-02-20T09:33:24.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-20T18:09:56.000Z (over 1 year ago)
- Last Synced: 2025-08-31T16:04:14.622Z (9 months ago)
- Language: Go
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# numpy-writer-go
This project serves as a test application to evaluate the functionality of the [`npyio`](https://github.com/sbinet/npyio) library for writing NumPy-compatible `.npy` and `.npz` files in Go.
## Purpose
The primary goal of this project is to:
- Experiment with the `npyio` library's features.
- Validate the creation of `.npy` and `.npz` files from Go data structures.
- Ensure compatibility of the generated files with Python's NumPy and Pandas libraries.
## Prerequisites
Before running this project, ensure you have the following installed:
- [Go](https://golang.org/dl/) (version 1.16 or higher)
- [Python](https://www.python.org/downloads/) (version 3.6 or higher)
- Python packages:
- `numpy`
- `pandas`
You can install the required Python packages using pip:
```bash
pip install numpy pandas
```