/pynut

Read .raw simulation files as pandas DataFrame

Primary LanguagePythonMIT LicenseMIT

PyNut

You can pronounce it 🥜 when you think no one's listening.

Installation

With pip:

$ pip install git+https://github.com/augustunderground/pynut.git

From source:

$ git clone https://github.com/augustunderground/pynut.git
$ pushd pynut
$ pip install .

Example

import pynut as pn

file = './test/rc2.raw'

raw = pn.read_raw(file)

Or see test/example.py.