├── .gitignore ├── CHANGELOG.md ├── CITATION.cff ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── config.yaml ├── docs ├── core.html └── index.html ├── notebooks └── introduction.ipynb ├── pyproject.toml ├── pyspectre ├── __init__.py ├── __main__.py ├── base_interface.py ├── dummy_interface.py ├── functional.py └── spectre_interface.py ├── requirements.txt ├── setup.py └── test ├── example.scs ├── example_1.py └── example_2.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugustUnderground/pyspectre/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugustUnderground/pyspectre/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugustUnderground/pyspectre/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugustUnderground/pyspectre/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugustUnderground/pyspectre/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugustUnderground/pyspectre/HEAD/README.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugustUnderground/pyspectre/HEAD/config.yaml -------------------------------------------------------------------------------- /docs/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugustUnderground/pyspectre/HEAD/docs/core.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugustUnderground/pyspectre/HEAD/docs/index.html -------------------------------------------------------------------------------- /notebooks/introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugustUnderground/pyspectre/HEAD/notebooks/introduction.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugustUnderground/pyspectre/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyspectre/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugustUnderground/pyspectre/HEAD/pyspectre/__init__.py -------------------------------------------------------------------------------- /pyspectre/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugustUnderground/pyspectre/HEAD/pyspectre/__main__.py -------------------------------------------------------------------------------- /pyspectre/base_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugustUnderground/pyspectre/HEAD/pyspectre/base_interface.py -------------------------------------------------------------------------------- /pyspectre/dummy_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugustUnderground/pyspectre/HEAD/pyspectre/dummy_interface.py -------------------------------------------------------------------------------- /pyspectre/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugustUnderground/pyspectre/HEAD/pyspectre/functional.py -------------------------------------------------------------------------------- /pyspectre/spectre_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugustUnderground/pyspectre/HEAD/pyspectre/spectre_interface.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugustUnderground/pyspectre/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugustUnderground/pyspectre/HEAD/setup.py -------------------------------------------------------------------------------- /test/example.scs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugustUnderground/pyspectre/HEAD/test/example.scs -------------------------------------------------------------------------------- /test/example_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugustUnderground/pyspectre/HEAD/test/example_1.py -------------------------------------------------------------------------------- /test/example_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugustUnderground/pyspectre/HEAD/test/example_2.py --------------------------------------------------------------------------------