Répertoire de filtre à Python

#import fnmatch and os
import os, fnmatch

#path to use
path = "/kite/run"

#filter for all the python files
files = fnmatch.filter(os.listdir(path), "*.py")

#display the python files
print(files)
TheRubberDucky