https://github.com/augustunderground/pynut
Read .raw simulation files as pandas DataFrame
https://github.com/augustunderground/pynut
cadence-spectre python raw-data
Last synced: 3 months ago
JSON representation
Read .raw simulation files as pandas DataFrame
- Host: GitHub
- URL: https://github.com/augustunderground/pynut
- Owner: AugustUnderground
- License: mit
- Created: 2022-09-28T08:54:25.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-11-14T15:58:22.000Z (8 months ago)
- Last Synced: 2025-04-15T01:53:59.180Z (3 months ago)
- Topics: cadence-spectre, python, raw-data
- Language: Python
- Homepage: https://augustunderground.github.io/pynut
- Size: 31.3 KB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 pnfile = './test/rc2.raw'
raw = pn.read_raw(file)
```Or see `test/example.py`.