Metadata-Version: 2.4
Name: cborJ
Version: 0.1.0
Summary: Lightweight pure-Python JSON ↔ CBOR encoder/decoder with optional zlib compression
Project-URL: Repository, https://github.com/Abodx9/Cbor-J
Author-email: Abodx9 <abodx@gmx.de>
License: MIT
License-File: LICENSE
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: System :: Archiving :: Compression
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Cbor-J
Lightweight pure-Python library to encode/decode JSON strings to/from CBOR — with optional zlib compression.

Perfect for reducing storage size of large JSON files.

## Features

- Pure Python, no dependencies
- Simple API: `encode(json_str, compress=False) → bytes`, `decode(bytes, compress=False) → str`
- Optional zlib compression (like EU Digital COVID Certificate format, *without* signing/Base45)

