Skip to content

Instantly share code, notes, and snippets.

@christabor
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christabor/12a5dd5d97e46c70ad60 to your computer and use it in GitHub Desktop.
Save christabor/12a5dd5d97e46c70ad60 to your computer and use it in GitHub Desktop.
Get all django model fields in one go...
from django.db import models
DJANGO_FIELDS = (
(str(field).upper(), field)
for field in dir(models) if field.endswith('Field')
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment