Metadata-Version: 2.4
Name: ccsid1153_codec
Version: 0.0.2
Summary: Pure Python codec for IBM EBCDIC Code Page 1153 (CCSID 1153) to UTF-8
Author-email: Milan Otajovič <motajovic@datalast.eu>
License-Expression: MPL-2.0
Project-URL: Repository, https://github.com/motajko/ccsid1153_codec.git
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Topic :: Text Processing :: Filters
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# CCSID 1153 Codec Package

A pure Python package providing native support for the IBM-1153 EBCDIC (Latin-2) code page layout.

## Usage

```python
import ccsid1153_codec

# Use natively with standard string and byte methods
ebcdic_bytes = "ľščťžýáíéúäôň {} €".encode("ibm-1153")
print(ebcdic_bytes)
```
