Metadata-Version: 2.1
Name: arff-format-converter
Version: 1.0.3
Summary: Converts ARFF files to CSV, JSON, XML, XLSX, and ORC
Author: Shani Sinojiya
Author-email: shanisinojiya@gmail.com
Maintainer: Shani Sinojiya
Maintainer-email: shanisinojiya@gmail.com
License: MIT
Keywords: arff,data-conversion,format-conversion,data-interchange,machine-learning,data-preprocessing,data-transformation,file-format-conversion,data-science,python-package,xml,json,csv,excel,orc,pandas,pyarrow,data-manipulation,data-export,data-import
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: ujson
Requires-Dist: pandas
Requires-Dist: argparse
Requires-Dist: tqdm
Requires-Dist: fastavro
Requires-Dist: openpyxl

# Convert ARFF files to different formats.

The `arff-format-converter` tool allows you to convert ARFF files to various output formats. Below are the details:

## INSTALL

```bash
pip install arff-format-converter
```

## SYNOPSIS

```bash
arff-format-converter -f <file> -o <output_folder> -fmt <output_format>
```

## EXAMPLES

```bash
arff-format-converter -f data.arff -o output -fmt json
arff-format-converter -f data.arff -o output -fmt xml
arff-format-converter -f data.arff -o output -fmt csv
arff-format-converter -f data.arff -o output -fmt xlsx
arff-format-converter -f data.arff -o output -fmt orc
```

## OPTIONS

- `-f, --file` Path to the ARFF file.
- `-o, --output` Path to the output folder.
- `-fmt, --format` Output format: 'xml', 'json', 'csv', 'xlsx', 'orc'.

## SUPPORTED FORMATS

- **ARFF** (input)
- **XML** (output)
- **JSON** (output)
- **CSV** (output)
- **XLSX** (output)
- **ORC** (Apache ORC format) (output)

## AUTHOR

Written by [Shani Sinojiya](https://www.shanisinojiya.com).

## REPORTING BUGS:

Report bugs to [issue section](https://github.com/Shani-Sinojiya/arff-format-converter/issues)

**_Remember to replace `"data.arff"` with the actual path to your ARFF file and `"output"` with the desired output folder. Feel free to adapt this code snippet for other formats like XML, CSV, XLSX, or ORC as needed! ðŸš€_**
