0 purchases
adsorptionfileparser 0.2.8
Adsorption File Parser
A pure python parser to sorption files from various instrumentation manufacturers.
It comes with minimal dependencies and maximum flexibility.
Currently supports files from:
Micromeritics (‘.xls’ reports)
Surface Measurement Systems DVS (‘.xlsx’ reports)
3P instruments (‘.xlsx’ reports)
Quantachrome (‘.txt’ raw isotherm data)
MicrotracBEL (‘.dat’, ‘.xls’ and ‘.csv’ files)
status
license
tests
package
Installation
Install using pip
pip install adsorption-file-parser
Documentation
The main read function returns two dictionaries:
a meta dictionary, which contains various metadata
that is present in the report (date, user, units)
and the data dictionary, containing lists
of individual isotherm data.
from adsorption_file_parser import read
meta, data = read(
path="path/to/file",
manufacturer="manufacturer",
fmt="supported format"
)
Bugs or questions?
For any bugs found or feature requests, please open an
issue
or, even better, submit a
pull request.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.