runnable-hub/python/runnable_workers/apiWorker/request/apiHttpMethod.py (6 lines of code) (raw):

from enum import Enum class ApiHttpMethod(Enum): GET = "GET" POST = "POST" PUT = "PUT" DELETE = "DELETE"