Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/guszandy/cabrillodecoderpython

Decode Cabrillo file to dict variable in python.
https://github.com/guszandy/cabrillodecoderpython

Last synced: about 1 month ago
JSON representation

Decode Cabrillo file to dict variable in python.

Awesome Lists containing this project

README

        

# 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())
```