https://github.com/mfa/inotify_example
https://github.com/mfa/inotify_example
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/mfa/inotify_example
- Owner: mfa
- Created: 2017-02-06T17:39:55.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-06T17:43:52.000Z (over 9 years ago)
- Last Synced: 2025-02-07T14:22:33.822Z (over 1 year ago)
- Language: Python
- Size: 0 Bytes
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# inotify example
check if file is closed in a folder for further processing
# install
```
mkvirtualenv -p `which python3` inotify_example
pip install -r requirements.txt
python inotify_example.py
```
# run
in another shell now add a file to current folder:
```
echo "test" > test.txt
```