Multizip, is a Python 3 program to zip multiple files (and folders) located within a (user supplied) directory.
Usage: python multizip.py D:\path\to\files C:\optional\output\dir
You can find it on my GitHub.
Multizip, is a Python 3 program to zip multiple files (and folders) located within a (user supplied) directory.
Usage: python multizip.py D:\path\to\files C:\optional\output\dir
You can find it on my GitHub.
I needed a program to watch a file for changes and then execute a command when the watched file changes. I’ve been messing around with Python 3.6 lately so I decided I would write the program that I needed.
A quick visit to Stack Overflow got me pointed in the right direction and the result is fwatch.py, a simple script that does exactly what I mentioned above. I wrote it on my Windows box and I have not had a chance to run it under another OS. it should work, however… Continue reading fwatch.py – A Python File Watcher