PythonPath

From XPUB & Lens-Based wiki

Checking the extension of a file (against a list)

import os

foo = "SUNSET.JPG"
(base, ext) = os.path.splitext(foo)
ext = ext[1:] # strip first char (.)
if ext.lower() in ["jpg", "jpeg", "png", "gif"]:
	print "image!"