1
0
Fork 0
mirror of https://github.com/ldericher/fftcgtool synced 2025-01-15 15:02:59 +00:00
fftcgtool/main.py
2021-08-04 03:39:19 +02:00

16 lines
250 B
Python
Executable file

#!/usr/bin/env python3
from fftcg.opus import Opus
from fftcg.imageloader import ImageLoader
def main():
opus = Opus(14)
print(opus)
queue = ImageLoader.spawn(opus, (429, 600))
queue.join()
if __name__ == '__main__':
main()