Importer le module Glob Python
import glob
kamal
import glob
pip install glob2
import glob
# path of the current directory
path = '.'
curfiles = glob.glob(path + '/*.html')
for file in curfiles:
print(file)