Django Public Recipes
This code creates a file field that allows users to input a maximum file size of 100 MB.
Library: django
Shortcut: django.field.file
fieldName = models.FileField(upload_to=None, max_length = 100)