Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

npy

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

npy

  • 0.4.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Npy

Save and load NumPy npy and npz files in Ruby - no Python required

:fire: Uses Numo for blazing performance

Build Status

Installation

Add this line to your application’s Gemfile:

gem "npy"

Getting Started

npy

npy files contain a single array

Save an array

x = Numo::Int32[0..9]
Npy.save("x.npy", x)

Load an npy file

x = Npy.load("x.npy")

Load an npy string

byte_str = File.binread("x.npy")
x = Npy.load_string(byte_str)

npz

npz files contain multiple arrays

Save multiple arrays

x =  Numo::Int32[0..9]
y = x * 2
Npy.save_npz("data.npz", x: x, y: y)

Load an npz file

data = Npy.load_npz("data.npz")

Get keys

data.keys

Get an array

data["x"]

Arrays are lazy loaded for performance

Resources

History

View the changelog

Contributing

Everyone is encouraged to help improve this project. Here are a few ways you can help:

To get started with development:

git clone https://github.com/ankane/npy.git
cd npy
bundle install
bundle exec rake test

FAQs

Package last updated on 24 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc