How to use helper files in PyCharm
问题 I am trying to follow along with a project written by Mike Smales - "Sound Classification using Deep Learning". In there, the author wrote a helper file called wavfilehelper.py: wavehelper.py Code import struct class WavFileHelper(): def read_file_properties(self, filename): wave_file = open(filename,"rb") riff = wave_file.read(12) fmt = wave_file.read(36) num_channels_string = fmt[10:12] num_channels = struct.unpack('<H', num_channels_string)[0] sample_rate_string = fmt[12:16] sample_rate =