Skip to content

Instantly share code, notes, and snippets.

@viveksb007
Created March 22, 2018 05:17
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 viveksb007/9048233894d333741f70616a21361b98 to your computer and use it in GitHub Desktop.
Save viveksb007/9048233894d333741f70616a21361b98 to your computer and use it in GitHub Desktop.
ALLOWED_EXTENSIONS = {'pdf'}
def allowed_file(filename):
return '.' in filename and filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment