Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/augustunderground/pynut
- Owner: AugustUnderground
- License: mit
- Created: 2022-09-28T08:54:25.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-11-08T07:39:08.000Z (8 days ago)
- Last Synced: 2024-11-08T08:29:21.106Z (8 days ago)
- Topics: cadence-spectre, python, raw-data
- Language: Python
- Homepage: https://augustunderground.github.io/pynut
- Size: 25.4 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`.