Metadata-Version: 2.1
Name: arff-format-converter
Version: 1.0.3b0
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:                             The MIT License (MIT)
                                Copyright © 2024 Shani Sinojiya
        
        Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
        
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: csv
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! ðŸš€_**
