Metadata-Version: 2.1
Name: galvani
Version: 0.3.0
Summary: Open and process battery charger log data files
Home-page: https://github.com/echemdata/galvani
Author: Chris Kerr
Author-email: chris.kerr@mykolab.ch
License: GPLv3+
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Scientific/Engineering :: Chemistry
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSES/GPL-3.0-or-later.txt
Requires-Dist: numpy

galvani
=======

<!---
SPDX-FileCopyrightText: 2013-2020 Christopher Kerr, Peter Attia

SPDX-License-Identifier: GPL-3.0-or-later
-->

Read proprietary file formats from electrochemical test stations

## Bio-Logic .mpr files ##

Use the `MPRfile` class from BioLogic.py (exported in the main package)

````
from galvani import BioLogic
import pandas as pd

mpr_file = BioLogic.MPRfile('test.mpr')
df = pd.DataFrame(mpr_file.data)
````

## Arbin .res files ##

Use the res2sqlite.py script to convert the .res file to a sqlite3 database
with the same schema.
