Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/augustunderground/pynut

Read .raw simulation files as pandas DataFrame
https://github.com/augustunderground/pynut

cadence-spectre python raw-data

Last synced: about 5 hours ago
JSON representation

Read .raw simulation files as pandas DataFrame

Awesome Lists containing this project

README

        

# PyNut

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

## Installation

With `pip`:

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

From source:

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

## Example

```python
import pynut as pn

file = './test/rc2.raw'

raw = pn.read_raw(file)
```

Or see `test/example.py`.