Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
__pycache__
*.pyc
build/
pygor.egg-info/

dist/
.venv/
.pytest_cache/
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.13
165 changes: 0 additions & 165 deletions COPYING.LESSER

This file was deleted.

2 changes: 0 additions & 2 deletions MANIFEST.in

This file was deleted.

138 changes: 0 additions & 138 deletions README

This file was deleted.

21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Pygor is a package for loading binary IGOR files. It's forked from [chstan's igorpy](https://github.com/chstan/igorpy) which is forked from [igor](https://github.com/wking/igor). The main purpose of pygor is to facilitate the loading of pxt files for [arpes-lite](https://github.com/jgobbo/arpes-lite).

Installation
------------

pygor is most easily installed with pip: `pip install pygor`

you can also clone the repo and install with [uv](https://docs.astral.sh/uv/)

Usage
-----

Standard usage is straightforward:

```python
from pygor import load

byte_order = "<" # options are "<", "=", ">"
data = load(IGOR_FILE_NAME, initial_byte_order=byte_order)
```

42 changes: 0 additions & 42 deletions bin/igorbinarywave.py

This file was deleted.

Loading