Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/guszandy/cabrillodecoderpython
- Owner: GusZandy
- License: mit
- Created: 2022-12-02T11:18:49.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-02T14:05:28.000Z (about 2 years ago)
- Last Synced: 2024-11-08T03:48:14.417Z (about 2 months ago)
- Language: Python
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
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())
```