You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OnionIngestor/onionscraper/operators/yara.py

16 lines
412 B
Python

from onionscraper.operators import Operator
class Plugin(Operator):
"""Operator for output to flat CSV file."""
def __init__(self, filename, base_score):
"""CSV operator."""
self.filename = filename
#super(Plugin, self).__init__(artifact_types, filter_string, allowed_sources)
def handle_artifact(self, artifact):
"""Operate on a single artifact."""
pass