JobSpy/api/core/formatters/__init__.py

7 lines
84 B
Python

from enum import Enum
class OutputFormat(Enum):
CSV = "csv"
JSON = "json"