Thus, if you want to write software which creates Python readable data then just export the data as space/tab separated ASCII files.
import scipy.io.wavfile as wavfile fs,data = wavfile.read('kongas.wav');fs,data is a tuple containing the sampling rate and then the data.
import scipy.io.wavfile as wavfile wavfile.write('kongas_filt.wav',fs,y3);whereas 'fs' is the sampling rate and y3 the data – usually normalised between -1 and +1 for floating point numbers.