Metadata-Version: 2.1
Name: cabrillo_decoder
Version: 22.0.1
Summary: Docode Cabrillo file to dictonary variable
Home-page: https://github.com/GusZandy/CabrilloDecoderPython.git
Author: Zandy Yudha Perwira
Author-email: zandy.yudha.p@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown
License-File: LICENSE

# CabrilloDecoderPython
Decode File Cabrillo to dictionary Python.

# Installation
To install this package, you have to write like this:
```python
pip install cabrillo-decoder
```
# Add an example file
Make sure that you have created a Python-extension file and write like this:
```python
from cabrillo_decoder import decoder
file = open("cq-ww-cw.cbr")

cabrillo = decoder.Cabrillo(file)

print(cabrillo.decode())
```
