Metadata-Version: 2.4
Name: coreviewercsvreader
Version: 0.2.2
Summary: Read coreSensing CSV files into pandas DataFrames
Project-URL: Homepage, https://github.com/coreViolett/coreVIEWERcsvReader
Project-URL: Issues, https://github.com/coreViolett/coreVIEWERcsvReader/issues
Author: Arthur Buchta
License: MIT
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Utilities
Requires-Python: >=3.9
Requires-Dist: flake8<8.0.0,>=7.3.0
Requires-Dist: pandas>=2.0
Requires-Dist: pytest<9.0.0,>=8.4.2
Description-Content-Type: text/markdown

# coreVIEWERcsvReader

A small Python utility to read and prepare Core-Viewer CSV files for validation, filtering, and further processing. The project provides a simple CLI entry point and an importable library module.

## Features

- Read Core-Viewer CSV files and return a Pandas DataFrame

## Requirements

- Python 3.13 (the project was developed with Python 3.13)
- Optional: Poetry for dependency and environment management

## example usage
```python
import coreviewercsvreader
if __name__ == "__main__":
   dataFrame = coreviewercsvreader.read_coresensing_csv("data/1-01107_2025-10-24_16-14-56.csv")
   print(dataFrame)
```

## License

See the LICENSE file included in the repository.

