Skip to content

Instantly share code, notes, and snippets.

View devangn's full-sized avatar

Devang Nathwani devangn

View GitHub Profile
@dedayoa
dedayoa / vox2astpp.py
Created February 3, 2019 20:03
A python script to convert voxbeam rates to form that can be imported into astpp
import csv
import os
import sys
from decimal import Decimal
import logging
stdout_handler = logging.StreamHandler(sys.stdout)
logging.basicConfig(
level=logging.DEBUG,
format='[%(asctime)s] %(levelname)s - %(message)s',