Metadata-Version: 2.4
Name: OBPAnalyser
Version: 0.0.4
Summary: A package for analysation of open beam files (OBP and OBF).
Author-email: Anton Wiberg <wiberg.anton@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/wiberganton/OBAnalyser
Project-URL: Repository, https://github.com/wiberganton/OBAnalyser
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: obplib
Requires-Dist: numpy
Requires-Dist: py3mf_slicer
Requires-Dist: matplotlib
Requires-Dist: scipy
Requires-Dist: pandas
Requires-Dist: pyyaml
Dynamic: license-file

# OBAnalyser
This package is used to analyse obf and obp files to read out the information about energy input

Installation:
```
pip install OBPAnalyser
```


A minimum example:
```
import obanalyser.analyse_build as analyse_build
import obanalyser.plotters.plot_build_data as plot_build_data
path = r"tests\input\cubes_test\buildInfo.json"
build = analyse_build.analyse_build(path)
build.to_json(r"tests\output\build_info.json")

plot_build_data(build)
```
