Skip to content

Instantly share code, notes, and snippets.

View zanniboni's full-sized avatar

Vinicius Zaniboni Chagas zanniboni

  • Brazil
View GitHub Profile
@karthick965938
karthick965938 / remove_png_image.py
Last active September 12, 2021 16:23
Remove PNG images into the directory
import glob
import pathlib
for file in glob.glob('frames/*.png'):
path = pathlib.Path(file)
path.unlink()