Skip to main content

Python utility to watch the file modification only.

Project description

forthebadge

Build Status Coverage Status

📄 Overview

Python utility to watch the file modification. There are similar libraries: pyinotify, watchdog. These libraries watch the file system event, but JustWatch is supported modification only.

✏️ Usage

quick start

First of all, import classes from justwatch:

from justwatch import WatchManager, Observer

make WatchManager instance and add file or directory:

manager = WatchManager()
manager.add_file("./README.md")
manager.add_dir("./tests")

make Observer instance and set callback:

observer = Observer(manager)

@observer.set_callback
def callback(item):
    print "Catch the modification of '{0}'".format(item.path)

and run observer.watch

observer.watch()

example

📥 Installation

$ git clone git@github.com:alice1017/JustWatch.git
$ cd JustWatch
$ python setup.py build install

TODO: I will upload pypi registry.

👀 Contribution

  1. Forks on Github

  2. Find a bug? Send a pull request to get it merged and published.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

just-watch-1.0.0b1.tar.gz (3.1 kB view hashes)

Uploaded Source

Built Distribution

just_watch-1.0.0b1-py2.7.egg (7.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page