Developing RESTful APIs with Python and Flask

PHOTO EMBED

Thu Mar 03 2022 07:17:24 GMT+0000 (Coordinated Universal Time)

Saved by @morristech #python

from enum import Enum


class TransactionType(Enum):
  INCOME = "INCOME"
  EXPENSE = "EXPENSE"
content_copyCOPY

https://auth0.com/blog/developing-restful-apis-with-python-and-flask/