Skip to content

Instantly share code, notes, and snippets.

@thanakijwanavit
Created March 9, 2021 01:34
Show Gist options
  • Save thanakijwanavit/c105238734352332259f9836dc2ec163 to your computer and use it in GitHub Desktop.
Save thanakijwanavit/c105238734352332259f9836dc2ec163 to your computer and use it in GitHub Desktop.
Attributes pynamodb enum
from pynamodb_attributes import UnicodeEnumAttribute
from pynamodb.models import Model
from enum import Enum
class ShippingType(Enum):
delivery = 'DELIVERY'
pickUp = 'PICKUP'
class PynamoClass(Model):
shippingType = UnicodeEnumAttribute(ShippingType, null=True) # enum shipping type
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment