kac/main.py

11 lines
219 B
Python
Raw Normal View History

2022-11-04 00:56:20 +00:00
from watchgod import watch
2022-11-04 09:22:56 +00:00
from printer import printer
2022-11-04 00:56:20 +00:00
2022-11-04 09:22:56 +00:00
base = "./"
2022-11-04 00:56:20 +00:00
def main():
for changes in watch('./images'):
2022-11-04 09:22:56 +00:00
print(changes)
for change in changes:
printer(base + "/" + change[1])