This Python project provides a simple solution to convert EBCDIC-encoded files to ASCII format. It enables seamless interoperability between legacy systems using EBCDIC and modern applications expecting ASCII-encoded data.
- Converts EBCDIC files to ASCII format
- Supports various EBCDIC character encodings
- Efficient and easy-to-use solution
- Install Python (version 3.1 or above) from python.org
- Clone this repository:
git clone https://github.com/jmonaste/ebcdic-to-ascii-converter.git
- Run the converter script:
python converter.py [ebcdic_file] [ascii_file]
- Specify the EBCDIC file path and the desired output ASCII file path as command-line arguments
- The converted ASCII file will be generated with the provided file path
The project relies on the codecs
library, which is a standard Python library and should be available in most Python installations.
Contributions are welcome! If you encounter any issues or have suggestions for improvements, please feel free to open an issue or submit a pull request.
This project is licensed under the MIT License.