JobSpy/api/core/formatters/__init__.py

8 lines
106 B
Python
Raw Normal View History

2023-08-27 14:25:48 -07:00
from enum import Enum
class OutputFormat(Enum):
CSV = "csv"
JSON = "json"
2023-08-27 18:32:46 -07:00
GSHEET = "gsheet"