sintonia/python_apps/airtime_analyzer/airtime_analyzer/analyzer.py
Albert Santoni 95b369c54d CC-5709: Airtime Analyzer
* Remove awful StoredFile::uploadFile() function
* Massive airtime_analyzer commenting and cleanup
* Cleaned up the upload code
* Temporarily disabled the liquidsoap playability test.
2014-04-03 16:13:26 -04:00

13 lines
253 B
Python

class Analyzer:
""" Abstract base class fpr all "analyzers".
"""
@staticmethod
def analyze(filename, metadata):
raise NotImplementedError
'''
class AnalyzerError(Error):
def __init__(self):
super.__init__(self)
'''