https://github.com/rhiever/xrff2csv
A Python tool that converts XRFF files to CSV format.
https://github.com/rhiever/xrff2csv
Last synced: 20 days ago
JSON representation
A Python tool that converts XRFF files to CSV format.
- Host: GitHub
- URL: https://github.com/rhiever/xrff2csv
- Owner: rhiever
- License: mit
- Created: 2016-02-22T15:58:48.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-06T17:00:42.000Z (about 9 years ago)
- Last Synced: 2025-03-26T11:44:52.579Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://badge.fury.io/py/xrff2csv)



[](https://zenodo.org/badge/latestdoi/20747/rhiever/xrff2csv)# xrff2csv
A Python tool that converts XRFF files to CSV format.
## License
Please see the [repository license](https://github.com/rhiever/xrff2csv/blob/master/LICENSE) for the licensing and usage information for xrff2csv.
Generally, we have licensed xrff2csv to make it as widely usable as possible.
## Installation
```bash
pip install xrff2csv
```## Usage
xrff2csv can be used on the command line. Use `--help` to see its usage instructions.
```bash
xrff2csv --helpusage: xrff2csv [-h] [-o OUTPUT_FILENAME] [-sep SEP]
[--ignore-update-check] [--version]
INPUT_FILENAMEA Python tool that converts XRFF files to CSV format
positional arguments:
INPUT_FILENAME XRFF file to convertoptional arguments:
-h, --help show this help message and exit
-o OUTPUT_FILENAME CSV file to output to
-sep SEP Separator in the CSV file (default: \t)
--ignore-update-check
Do not check for the latest version of xrff2csv
(default: False)
--version show program's version number and exit
```An example use on the command line would be:
```bash
xrff2csv zoo.xrff -o zoo.csv -sep ,
```This command would convert `zoo.xrff` to `zoo.csv` with commas (,) as the separator.
xrff can also be used programmatically. An example use in code would be:
```python
from xrff2csv import xrff2csvxrff2csv('zoo.xrff', 'zoo.csv', sep=',')
```## Contributing to xrff2csv
We welcome you to [check the existing issues](https://github.com/rhiever/xrff2csv/issues/) for bugs or enhancements to work on. If you have an idea for an extension to xrff2csv, please [file a new issue](https://github.com/rhiever/xrff2csv/issues/new) so we can discuss it.