Files
hollywoo/scripts/imports.py

11 lines
283 B
Python

import sys
import json
import wave
from scipy.io import wavfile
from simpleaudio import play_buffer
from numpy import vstack
try:
from getch import getch
except:
from msvcrt import getwch as getch
__all__ = ['sys', 'json', 'wave', 'wavfile', 'play_buffer', 'vstack', 'getch']