Skip to main content

Filesystem events monitoring

Project description

Build Status CirrusCI Status

Python API and shell utilities to monitor file system events.

Works on 3.9+.

Example API Usage

A simple program that uses watchdog to monitor directories specified as command-line arguments and logs events generated:

import time

from watchdog.events import FileSystemEvent, FileSystemEventHandler
from watchdog.observers import Observer


class MyEventHandler(FileSystemEventHandler):
    def on_any_event(self, event: FileSystemEvent) -> None:
        print(event)


event_handler = MyEventHandler()
observer = Observer()
observer.schedule(event_handler, ".", recursive=True)
observer.start()
try:
    while True:
        time.sleep(1)
finally:
    observer.stop()
    observer.join()

Shell Utilities

Watchdog comes with an optional utility script called watchmedo. Please type watchmedo --help at the shell prompt to know more about this tool.

Here is how you can log the current directory recursively for events related only to *.py and *.txt files while ignoring all directory events:

watchmedo log \
    --patterns='*.py;*.txt' \
    --ignore-directories \
    --recursive \
    --verbose \
    .

You can use the shell-command subcommand to execute shell commands in response to events:

watchmedo shell-command \
    --patterns='*.py;*.txt' \
    --recursive \
    --command='echo "${watch_src_path}"' \
    .

Please see the help information for these commands by typing:

watchmedo [command] --help

About watchmedo Tricks

watchmedo can read tricks.yaml files and execute tricks within them in response to file system events. Tricks are actually event handlers that subclass watchdog.tricks.Trick and are written by plugin authors. Trick classes are augmented with a few additional features that regular event handlers don’t need.

An example tricks.yaml file:

tricks:
- watchdog.tricks.LoggerTrick:
    patterns: ["*.py", "*.js"]
- watchmedo_webtricks.GoogleClosureTrick:
    patterns: ['*.js']
    hash_names: true
    mappings_format: json                  # json|yaml|python
    mappings_module: app/javascript_mappings
    suffix: .min.js
    compilation_level: advanced            # simple|advanced
    source_directory: app/static/js/
    destination_directory: app/public/js/
    files:
      index-page:
      - app/static/js/vendor/jquery*.js
      - app/static/js/base.js
      - app/static/js/index-page.js
      about-page:
      - app/static/js/vendor/jquery*.js
      - app/static/js/base.js
      - app/static/js/about-page/**/*.js

The directory containing the tricks.yaml file will be monitored. Each trick class is initialized with its corresponding keys in the tricks.yaml file as arguments and events are fed to an instance of this class as they arrive.

Installation

Install from PyPI using pip:

$ python -m pip install -U watchdog

# or to install the watchmedo utility:
$ python -m pip install -U "watchdog[watchmedo]"

Install from source:

$ python -m pip install -e .

# or to install the watchmedo utility:
$ python -m pip install -e '.[watchmedo]'

Documentation

You can browse the latest release documentation online.

Contribute

Fork the repository on GitHub and send a pull request, or file an issue ticket at the issue tracker. For general help and questions use stackoverflow with tag python-watchdog.

Create and activate your virtual environment, then:

python -m pip install tox
python -m tox [-q] [-e ENV]

If you are making a substantial change, add an entry to the “Unreleased” section of the changelog.

Supported Platforms

  • Linux 2.6 (inotify)

  • macOS (FSEvents, kqueue)

  • FreeBSD/BSD (kqueue)

  • Windows (ReadDirectoryChangesW with I/O completion ports; ReadDirectoryChangesW worker threads)

  • OS-independent (polling the disk for directory snapshots and comparing them periodically; slow and not recommended)

Note that when using watchdog with kqueue, you need the number of file descriptors allowed to be opened by programs running on your system to be increased to more than the number of files that you will be monitoring. The easiest way to do that is to edit your ~/.profile file and add a line similar to:

ulimit -n 1024

This is an inherent problem with kqueue because it uses file descriptors to monitor files. That plus the enormous amount of bookkeeping that watchdog needs to do in order to monitor file descriptors just makes this a painful way to monitor files and directories. In essence, kqueue is not a very scalable way to monitor a deeply nested directory of files and directories with a large number of files.

About using watchdog with editors like Vim

Vim does not modify files unless directed to do so. It creates backup files and then swaps them in to replace the files you are editing on the disk. This means that if you use Vim to edit your files, the on-modified events for those files will not be triggered by watchdog. You may need to configure Vim appropriately to disable this feature.

About using watchdog with CIFS

When you want to watch changes in CIFS, you need to explicitly tell watchdog to use PollingObserver, that is, instead of letting watchdog decide an appropriate observer like in the example above, do:

from watchdog.observers.polling import PollingObserver as Observer

Dependencies

  1. Python 3.9 or above.

  2. XCode (only on macOS when installing from sources)

  3. PyYAML (only for watchmedo)

Licensing

Watchdog is licensed under the terms of the Apache License, version 2.0.

  • Copyright 2018-2024 Mickaël Schoentgen & contributors

  • Copyright 2014-2018 Thomas Amland & contributors

  • Copyright 2012-2014 Google, Inc.

  • Copyright 2011-2012 Yesudeep Mangalapilly

Project source code is available at Github. Please report bugs and file enhancement requests at the issue tracker.

Why Watchdog?

Too many people tried to do the same thing and none did what I needed Python to do:

Changelog

5.0.2

2024-09-03 • full history

  • Enable OS specific Mypy checks (#1064)

  • [watchmedo] Fix tricks argument type of schedule_tricks() (#1063)

  • Thanks to our beloved contributors: @gnought, @BoboTiG

5.0.1

2024-09-02 • full history

  • [kqueue] Fix TypeError: kqueue.control() only accepts positional parameters (#1062)

  • Thanks to our beloved contributors: @apoirier, @BoboTiG

5.0.0

2024-08-26 • full history

Breaking Changes

  • Drop support for Python 3.8 (#1055)

  • [core] Enforced usage of proper keyword-arguments (#1057)

  • [core] Renamed the BaseObserverSubclassCallable class to ObserverType (#1055)

  • [inotify] Renamed the inotify_event_struct class to InotifyEventStruct (#1055)

  • [inotify] Renamed the UnsupportedLibc exception to UnsupportedLibcError (#1057)

  • [inotify] Removed the InotifyConstants.IN_CLOSE constant (#1046)

  • [watchmedo] Renamed the LogLevelException exception to LogLevelError (#1057)

  • [watchmedo] Renamed the WatchdogShutdown exception to WatchdogShutdownError (#1057)

  • [windows] Renamed the FILE_NOTIFY_INFORMATION class to FileNotifyInformation (#1055)

  • [windows] Removed the unused WATCHDOG_TRAVERSE_MOVED_DIR_DELAY constant (#1057)

Other Changes

  • [core] Enable disallow_untyped_calls Mypy rule (#1055)

  • [core] Enable disallow_untyped_defs Mypy rule (#1060)

  • [core] Improve typing references for events (#1040)

  • [inotify] Add support for IN_CLOSE_NOWRITE events. A FileClosedNoWriteEvent event will be fired, and its on_closed_no_write() dispatcher has been introduced (#1046)

  • Thanks to our beloved contributors: @BoboTiG

4.0.2

2024-08-11 • full history

  • Add support for Python 3.13 (#1052)

  • [core] Run ruff, apply several fixes (#1033)

  • [core] Remove execution rights from events.py

  • [documentation] Update PatternMatchingEventHandler docstrings (#1048)

  • [documentation] Simplify the quickstart example (#1047)

  • [fsevents] Add missing event_filter keyword-argument to FSEventsObserver.schedule() (#1049)

  • [utils] Fix a possible race condition in AutoRestartTrick (#1002)

  • [watchmedo] Remove execution rights from watchmedo.py

  • Thanks to our beloved contributors: @BoboTiG, @nbelakovski, @ivg

4.0.1

2024-05-23 • full history

  • [inotify] Fix missing event_filter for the full emitter (#1032)

  • Thanks to our beloved contributors: @mraspaud, @BoboTiG

4.0.0

2024-02-06 • full history

  • Drop support for Python 3.7.

  • Add support for Python 3.12.

  • [snapshot] Add typing to dirsnapshot (#1012)

  • [snapshot] Added DirectorySnapshotDiff.ContextManager (#1011)

  • [events] FileSystemEvent, and subclasses, are now dataclass``es, and their ``repr() has changed

  • [windows] WinAPINativeEvent is now a dataclass, and its repr() has changed

  • [events] Log FileOpenedEvent, and FileClosedEvent, events in LoggingEventHandler

  • [tests] Improve FileSystemEvent coverage

  • [watchmedo] Log all events in LoggerTrick

  • [windows] The observers.read_directory_changes.WATCHDOG_TRAVERSE_MOVED_DIR_DELAY hack was removed. The constant will be kept to prevent breaking other softwares.

  • Thanks to our beloved contributors: @BoboTiG, @msabramo

3.0.0

2023-03-20 • full history

  • Drop support for Python 3.6.

  • watchdog is now PEP 561 compatible, and tested with mypy

  • Fix missing > in FileSystemEvent.__repr__() (#980)

  • [ci] Lots of improvements

  • [inotify] Return from InotifyEmitter.queue_events() if not launched when thread is inactive (#963)

  • [tests] Stability improvements

  • [utils] Remove handling of threading.Event.isSet spelling (#962)

  • [watchmedo] Fixed tricks YAML generation (#965)

  • Thanks to our beloved contributors: @kurtmckee, @altendky, @agroszer, @BoboTiG

2.3.1

2023-02-28 • full history

  • Run black on the entire source code

  • Bundle the requirements-tests.txt file in the source distribution (#939)

  • [watchmedo] Exclude FileOpenedEvent events from AutoRestartTrick, and ShellCommandTrick, to restore watchdog < 2.3.0 behavior. A better solution should be found in the future. (#949)

  • [watchmedo] Log FileOpenedEvent, and FileClosedEvent, events in LoggerTrick

  • Thanks to our beloved contributors: @BoboTiG

2.3.0

2023-02-23 • full history

  • [inotify] Add support for IN_OPEN events: a FileOpenedEvent event will be fired (#941)

  • [watchmedo] Add optional event debouncing for auto-restart, only restarting once if many events happen in quick succession (--debounce-interval) (#940)

  • [watchmedo] Exit gracefully on KeyboardInterrupt exception (Ctrl+C) (#945)

  • [watchmedo] Add option to not auto-restart the command after it exits (--no-restart-on-command-exit) (#946)

  • Thanks to our beloved contributors: @BoboTiG, @dstaple, @taleinat, @cernekj

2.2.1

2023-01-01 • full history

  • Enable mypy to discover type hints as specified in PEP 561 (#933)

  • [ci] Set the expected Python version when building release files

  • [ci] Update actions versions in use

  • [watchmedo] [regression] Fix usage of missing signal.SIGHUP attribute on non-Unix OSes (#935)

  • Thanks to our beloved contributors: @BoboTiG, @simon04, @piotrpdev

2.2.0

2022-12-05 • full history

  • [build] Wheels are now available for Python 3.11 (#932)

  • [documentation] HTML documentation builds are now tested for errors (#902)

  • [documentation] Fix typos here, and there (#910)

  • [fsevents2] The fsevents2 observer is now deprecated (#909)

  • [tests] The error message returned by musl libc for error code -1 is now allowed (#923)

  • [utils] Remove unnecessary code in dirsnapshot.py (#930)

  • [watchmedo] Handle shutdown events from SIGHUP (#912)

  • Thanks to our beloved contributors: @kurtmckee, @babymastodon, @QuantumEnergyE, @timgates42, @BoboTiG

2.1.9

2022-06-10 • full history

  • [fsevents] Fix flakey test to assert that there are no errors when stopping the emitter.

  • [inotify] Suppress occasional OSError: [Errno 9] Bad file descriptor at shutdown. (#805)

  • [watchmedo] Make auto-restart restart the sub-process if it terminates. (#896)

  • [watchmedo] Avoid zombie sub-processes when running shell-command without --wait. (#405)

  • Thanks to our beloved contributors: @samschott, @taleinat, @altendky, @BoboTiG

2.1.8

2022-05-15 • full history

  • Fix adding failed emitters on observer schedule. (#872)

  • [inotify] Fix hang when unscheduling watch on a path in an unmounted filesystem. (#869)

  • [watchmedo] Fix broken parsing of --kill-after argument for the auto-restart command. (#870)

  • [watchmedo] Fix broken parsing of boolean arguments. (#887)

  • [watchmedo] Fix broken parsing of commands from auto-restart, and shell-command. (#888)

  • [watchmedo] Support setting verbosity level via -q/--quiet and -v/--verbose arguments. (#889)

  • Thanks to our beloved contributors: @taleinat, @kianmeng, @palfrey, @IlayRosenberg, @BoboTiG

2.1.7

2022-03-25 • full history

  • Eliminate timeout in waiting on event queue. (#861)

  • [inotify] Fix not equality implementation for InotifyEvent. (#848)

  • [watchmedo] Fix calling commands from within a Python script. (#879)

  • [watchmedo] PyYAML is loaded only when strictly necessary. Simple usages of watchmedo are possible without the module being installed. (#847)

  • Thanks to our beloved contributors: @sattlerc, @JanzenLiu, @BoboTiG

2.1.6

2021-10-01 • full history

  • [bsd] Fixed returned paths in kqueue.py and restored the overall results of the test suite. (#842)

  • [bsd] Updated FreeBSD CI support .(#841)

  • [watchmedo] Removed the argh dependency in favor of the builtin argparse module. (#836)

  • [watchmedo] Removed unexistant WindowsApiAsyncObserver references and --debug-force-winapi-async arguments.

  • [watchmedo] Improved the help output.

  • Thanks to our beloved contributors: @knobix, @AndreaRe9, @BoboTiG

2.1.5

2021-08-23 • full history

  • Fix regression introduced in 2.1.4 (reverted “Allow overriding or adding custom event handlers to event dispatch map. (#814)”). (#830)

  • Convert regexes of type str to list. (831)

  • Thanks to our beloved contributors: @unique1o1, @BoboTiG

2.1.4

2021-08-19 • full history

  • [watchmedo] Fix usage of os.setsid() and os.killpg() Unix-only functions. (#809)

  • [mac] Fix missing FileModifiedEvent on permission or ownership changes of a file. (#815)

  • [mac] Convert absolute watch path in FSEeventsEmitter with os.path.realpath(). (#822)

  • Fix a possible AttributeError in SkipRepeatsQueue._put(). (#818)

  • Allow overriding or adding custom event handlers to event dispatch map. (#814)

  • Fix tests on big endian platforms. (#828)

  • Thanks to our beloved contributors: @replabrobin, @BoboTiG, @SamSchott, @AndreiB97, @NiklasRosenstein, @ikokollari, @mgorny

2.1.3

2021-06-26 • full history

  • Publish macOS arm64 and universal2 wheels. (#740)

  • Thanks to our beloved contributors: @kainjow, @BoboTiG

2.1.2

2021-05-19 • full history

  • [mac] Fix relative path handling for non-recursive watch. (#797)

  • [windows] On PyPy, events happening right after start() were missed. Add a workaround for that. (#796)

  • Thanks to our beloved contributors: @oprypin, @CCP-Aporia, @BoboTiG

2.1.1

2021-05-10 • full history

  • [mac] Fix callback exceptions when the watcher is deleted but still receiving events (#786)

  • Thanks to our beloved contributors: @rom1win, @BoboTiG, @CCP-Aporia

2.1.0

2021-05-04 • full history

  • [inotify] Simplify libc loading (#776)

  • [mac] Add support for non-recursive watches in FSEventsEmitter (#779)

  • [watchmedo] Add support for --debug-force-* arguments to tricks (#781)

  • Thanks to our beloved contributors: @CCP-Aporia, @aodj, @UnitedMarsupials, @BoboTiG

2.0.3

2021-04-22 • full history

  • [mac] Use logger.debug() instead of logger.info() (#774)

  • Updated documentation links (#777)

  • Thanks to our beloved contributors: @globau, @imba-tjd, @BoboTiG

2.0.2

2021-02-22 • full history

  • [mac] Add missing exception objects (#766)

  • Thanks to our beloved contributors: @CCP-Aporia, @BoboTiG

2.0.1

2021-02-17 • full history

  • [mac] Fix a segmentation fault when dealing with unicode paths (#763)

  • Moved the CI from Travis-CI to GitHub Actions (#764)

  • Thanks to our beloved contributors: @SamSchott, @BoboTiG

2.0.0

2021-02-11 • full history

  • Avoid deprecated PyEval_InitThreads on Python 3.7+ (#746)

  • [inotify] Add support for IN_CLOSE_WRITE events. A FileCloseEvent event will be fired. Note that IN_CLOSE_NOWRITE events are not handled to prevent much noise. (#184, #245, #280, #313, #690)

  • [inotify] Allow to stop the emitter multiple times (#760)

  • [mac] Support coalesced filesystem events (#734)

  • [mac] Drop support for macOS 10.12 and earlier (#750)

  • [mac] Fix an issue when renaming an item changes only the casing (#750)

  • Thanks to our beloved contributors: @bstaletic, @lukassup, @ysard, @SamSchott, @CCP-Aporia, @BoboTiG

1.0.2

2020-12-18 • full history

  • Wheels are published for GNU/Linux, macOS and Windows (#739)

  • [mac] Fix missing event_id attribute in fsevents (#721)

  • [mac] Return byte paths if a byte path was given in fsevents (#726)

  • [mac] Add compatibility with old macOS versions (#733)

  • Uniformize event for deletion of watched dir (#727)

  • Thanks to our beloved contributors: @SamSchott, @CCP-Aporia, @di, @BoboTiG

1.0.1

2020-12-10 • Fix version with good metadatas.

1.0.0

2020-12-10 • full history

  • Versioning is now following the semver

  • Drop support for Python 2.7, 3.4 and 3.5

  • [mac] Regression fixes for native fsevents (#717)

  • [windows] winapi.BUFFER_SIZE now defaults to 64000 (instead of 2048) (#700)

  • [windows] Introduced winapi.PATH_BUFFER_SIZE (defaults to 2048) to keep the old behavior with path-realted functions (#700)

  • Use pathlib from the standard library, instead of pathtools (#556)

  • Allow file paths on Unix that don’t follow the file system encoding (#703)

  • Removed the long-time deprecated events.LoggingFileSystemEventHandler class, use LoggingEventHandler instead

  • Thanks to our beloved contributors: @SamSchott, @bstaletic, @BoboTiG, @CCP-Aporia

0.10.4

2020-11-21 • full history

  • Add logger parameter for the LoggingEventHandler (#676)

  • Replace mutable default arguments with if None implementation (#677)

  • Expand tests to Python 2.7 and 3.5-3.10 for GNU/Linux, macOS and Windows

  • [mac] Performance improvements for the fsevents module (#680)

  • [mac] Prevent compilation of watchdog_fsevents.c on non-macOS machines (#687)

  • [watchmedo] Handle shutdown events from SIGTERM and SIGINT more reliably (#693)

  • Thanks to our beloved contributors: @Sraw, @CCP-Aporia, @BoboTiG, @maybe-sybr

0.10.3

2020-06-25 • full history

  • Ensure ObservedWatch.path is a string (#651)

  • [inotify] Allow to monitor single file (#655)

  • [inotify] Prevent raising an exception when a file in a monitored folder has no permissions (#669, #670)

  • Thanks to our beloved contributors: @brant-ruan, @rec, @andfoy, @BoboTiG

0.10.2

2020-02-08 • full history

  • Fixed the build_ext command on macOS Catalina (#628)

  • Fixed the installation of macOS requirements on non-macOS OSes (#635)

  • Refactored dispatch() method of FileSystemEventHandler, PatternMatchingEventHandler and RegexMatchingEventHandler

  • [bsd] Improved tests support on non Windows/Linux platforms (#633, #639)

  • [bsd] Added FreeBSD CI support (#532)

  • [bsd] Restored full support (#638, #641)

  • Thanks to our beloved contributors: @BoboTiG, @evilham, @danilobellini

0.10.1

2020-01-30 • full history

  • Fixed Python 2.7 to 3.6 installation when the OS locale is set to POSIX (#615)

  • Fixed the build_ext command on macOS (#618, #620)

  • Moved requirements to setup.cfg (#617)

  • [mac] Removed old C code for Python 2.5 in the fsevents C implementation

  • [snapshot] Added EmptyDirectorySnapshot (#613)

  • Thanks to our beloved contributors: @Ajordat, @tehkirill, @BoboTiG

0.10.0

2020-01-26 • full history

Breaking Changes

  • Dropped support for Python 2.6, 3.2 and 3.3

  • Emitters that failed to start are now removed

  • [snapshot] Removed the deprecated walker_callback argument, use stat instead

  • [watchmedo] The utility is no more installed by default but via the extra watchdog[watchmedo]

Other Changes

  • Fixed several Python 3 warnings

  • Identify synthesized events with is_synthetic attribute (#369)

  • Use os.scandir() to improve memory usage (#503)

  • [bsd] Fixed flavors of FreeBSD detection (#529)

  • [bsd] Skip unprocessable socket files (#509)

  • [inotify] Fixed events containing non-ASCII characters (#516)

  • [inotify] Fixed the way OSError are re-raised (#377)

  • [inotify] Fixed wrong source path after renaming a top level folder (#515)

  • [inotify] Removed delay from non-move events (#477)

  • [mac] Fixed a bug when calling FSEventsEmitter.stop() twice (#466)

  • [mac] Support for unscheduling deleted watch (#541)

  • [mac] Fixed missing field initializers and unused parameters in watchdog_fsevents.c

  • [snapshot] Don’t walk directories without read permissions (#408)

  • [snapshot] Fixed a race condition crash when a directory is swapped for a file (#513)

  • [snasphot] Fixed an AttributeError about forgotten path_for_inode attr (#436)

  • [snasphot] Added the ignore_device=False parameter to the ctor (597)

  • [watchmedo] Fixed the path separator used (#478)

  • [watchmedo] Fixed the use of yaml.load() for yaml.safe_load() (#453)

  • [watchmedo] Handle all available signals (#549)

  • [watchmedo] Added the --debug-force-polling argument (#404)

  • [windows] Fixed issues when the observed directory is deleted (#570 and #601)

  • [windows] WindowsApiEmitter made easier to subclass (#344)

  • [windows] Use separate ctypes DLL instances

  • [windows] Generate sub created events only if recursive=True (#454)

  • Thanks to our beloved contributors: @BoboTiG, @LKleinNux, @rrzaripov, @wildmichael, @TauPan, @segevfiner, @petrblahos, @QuantumEnergyE, @jeffwidman, @kapsh, @nickoala, @petrblahos, @julianolf, @tonybaloney, @mbakiev, @pR0Ps, javaguirre, @skurfer, @exarkun, @joshuaskelly, @danilobellini, @Ajordat

0.9.0

2018-08-28 • full history

  • Deleting the observed directory now emits a DirDeletedEvent event

  • [bsd] Improved the platform detection (#378)

  • [inotify] Fixed a crash when the root directory being watched by was deleted (#374)

  • [inotify] Handle systems providing uClibc

  • [linux] Fixed a possible DirDeletedEvent duplication when deleting a directory

  • [mac] Fixed unicode path handling fsevents2.py (#298)

  • [watchmedo] Added the --debug-force-polling argument (#336)

  • [windows] Fixed the FILE_LIST_DIRECTORY constant (#376)

  • Thanks to our beloved contributors: @vulpeszerda, @hpk42, @tamland, @senden9, @gorakhargosh, @nolsto, @mafrosis, @DonyorM, @anthrotype, @danilobellini, @pierregr, @ShinNoNoir, @adrpar, @gforcada, @pR0Ps, @yegorich, @dhke

0.8.3

2015-02-11 • full history

  • Fixed the use of the root logger (#274)

  • [inotify] Refactored libc loading and improved error handling in inotify_c.py

  • [inotify] Fixed a possible unbound local error in inotify_c.py

  • Thanks to our beloved contributors: @mmorearty, @tamland, @tony, @gorakhargosh

0.8.2

2014-10-29 • full history

  • Event emitters are no longer started on schedule if Observer is not already running

  • [mac] Fixed usued arguments to pass clang compilation (#265)

  • [snapshot] Fixed a possible race condition crash on directory deletion (#281)

  • [windows] Fixed an error when watching the same folder again (#270)

  • Thanks to our beloved contributors: @tamland, @apetrone, @Falldog, @theospears

0.8.1

2014-07-28 • full history

  • Fixed anon_inode descriptors leakage (#249)

  • [inotify] Fixed thread stop dead lock (#250)

  • Thanks to our beloved contributors: @Witos, @adiroiban, @tamland

0.8.0

2014-07-02 • full history

  • Fixed argh deprecation warnings (#242)

  • [snapshot] Methods returning internal stats info were replaced by mtime(), inode() and path() methods

  • [snapshot] Deprecated the walker_callback argument

  • [watchmedo] Fixed auto-restart to terminate all children processes (#225)

  • [watchmedo] Added the --no-parallel argument (#227)

  • [windows] Fixed the value of INVALID_HANDLE_VALUE (#123)

  • [windows] Fixed octal usages to work with Python 3 as well (#223)

  • Thanks to our beloved contributors: @tamland, @Ormod, @berdario, @cro, @BernieSumption, @pypingou, @gotcha, @tommorris, @frewsxcv

Download files

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

Source Distribution

watchdog-5.0.2.tar.gz (127.8 kB view details)

Uploaded Source

Built Distributions

watchdog-5.0.2-py3-none-win_ia64.whl (78.9 kB view details)

Uploaded Python 3 Windows ia64

watchdog-5.0.2-py3-none-win_amd64.whl (79.0 kB view details)

Uploaded Python 3 Windows x86-64

watchdog-5.0.2-py3-none-win32.whl (78.9 kB view details)

Uploaded Python 3 Windows x86

watchdog-5.0.2-py3-none-manylinux2014_s390x.whl (79.0 kB view details)

Uploaded Python 3

watchdog-5.0.2-py3-none-manylinux2014_ppc64.whl (79.0 kB view details)

Uploaded Python 3

watchdog-5.0.2-py3-none-manylinux2014_i686.whl (79.0 kB view details)

Uploaded Python 3

watchdog-5.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (88.3 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

watchdog-5.0.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (87.8 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

watchdog-5.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl (88.3 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

watchdog-5.0.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (87.8 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

watchdog-5.0.2-cp313-cp313-macosx_11_0_arm64.whl (88.9 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

watchdog-5.0.2-cp313-cp313-macosx_10_13_x86_64.whl (88.3 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

watchdog-5.0.2-cp313-cp313-macosx_10_13_universal2.whl (96.4 kB view details)

Uploaded CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)

watchdog-5.0.2-cp312-cp312-macosx_11_0_arm64.whl (88.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

watchdog-5.0.2-cp312-cp312-macosx_10_9_x86_64.whl (88.3 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

watchdog-5.0.2-cp312-cp312-macosx_10_9_universal2.whl (96.4 kB view details)

Uploaded CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64)

watchdog-5.0.2-cp311-cp311-macosx_11_0_arm64.whl (88.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

watchdog-5.0.2-cp311-cp311-macosx_10_9_x86_64.whl (88.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

watchdog-5.0.2-cp311-cp311-macosx_10_9_universal2.whl (96.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

watchdog-5.0.2-cp310-cp310-macosx_11_0_arm64.whl (88.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

watchdog-5.0.2-cp310-cp310-macosx_10_9_x86_64.whl (88.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

watchdog-5.0.2-cp310-cp310-macosx_10_9_universal2.whl (96.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

watchdog-5.0.2-cp39-cp39-macosx_11_0_arm64.whl (88.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

watchdog-5.0.2-cp39-cp39-macosx_10_9_x86_64.whl (88.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

watchdog-5.0.2-cp39-cp39-macosx_10_9_universal2.whl (96.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file watchdog-5.0.2.tar.gz.

File metadata

  • Download URL: watchdog-5.0.2.tar.gz
  • Upload date:
  • Size: 127.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for watchdog-5.0.2.tar.gz
Algorithm Hash digest
SHA256 dcebf7e475001d2cdeb020be630dc5b687e9acdd60d16fea6bb4508e7b94cf76
MD5 7e4eff2cd9a3e62f0dccd55801d5b0c0
BLAKE2b-256 cd5e95dcd86d8339fcf76385f7fad5e49cbfd989b6c6199127121c9587febc65

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-py3-none-win_ia64.whl.

File metadata

  • Download URL: watchdog-5.0.2-py3-none-win_ia64.whl
  • Upload date:
  • Size: 78.9 kB
  • Tags: Python 3, Windows ia64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for watchdog-5.0.2-py3-none-win_ia64.whl
Algorithm Hash digest
SHA256 3960136b2b619510569b90f0cd96408591d6c251a75c97690f4553ca88889769
MD5 90ec829b871fc0c0c06c7f513d75d1f0
BLAKE2b-256 5399f5065334d157518ec8c707aa790c93d639fac582be4f7caec5db8c6fa089

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-py3-none-win_amd64.whl.

File metadata

  • Download URL: watchdog-5.0.2-py3-none-win_amd64.whl
  • Upload date:
  • Size: 79.0 kB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for watchdog-5.0.2-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 d010be060c996db725fbce7e3ef14687cdcc76f4ca0e4339a68cc4532c382a73
MD5 1b2614548fc3f87d81db60aee26ade30
BLAKE2b-256 8fabf1a3791be609e18596ce6a52c00274f1b244340b87379eb78c4df15f6b2b

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-py3-none-win32.whl.

File metadata

  • Download URL: watchdog-5.0.2-py3-none-win32.whl
  • Upload date:
  • Size: 78.9 kB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for watchdog-5.0.2-py3-none-win32.whl
Algorithm Hash digest
SHA256 bda40c57115684d0216556671875e008279dea2dc00fcd3dde126ac8e0d7a2fb
MD5 bd3c3eb71f8b60a36e9d5a727c56558b
BLAKE2b-256 5d0ec37862900200436a554a4c411645f29887fe3fb4d4e465fbedcf1e0e383a

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-py3-none-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-py3-none-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 726eef8f8c634ac6584f86c9c53353a010d9f311f6c15a034f3800a7a891d941
MD5 4896163a4890a2af4a85eae2a7892d63
BLAKE2b-256 9d53e71b01aa5737a21664b731de5f91c5b0721ff64d237e43efc56a99254fa1

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-py3-none-manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-py3-none-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7d1aa7e4bb0f0c65a1a91ba37c10e19dabf7eaaa282c5787e51371f090748f4b
MD5 7cf6eb5084f78f26d116807336e7f6e3
BLAKE2b-256 8adc4bdc31a35ffce526280c5a29b64b939624761f47e3fcdac34808589d0845

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-py3-none-manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-py3-none-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d2ab34adc9bf1489452965cdb16a924e97d4452fcf88a50b21859068b50b5c3b
MD5 c9a4032667039107ef692cf79b2956e2
BLAKE2b-256 a974c255a2146280adcb2d1b5ccb7580e71114b253f356a6c4ea748b0eb7a7b5

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-py3-none-manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-py3-none-manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 b6dc8f1d770a8280997e4beae7b9a75a33b268c59e033e72c8a10990097e5fde
MD5 066b49277953ffe5a87f811afc4f1368
BLAKE2b-256 f4db886241c6d02f165fbf633b633dc5ceddc6c145fec3704828606743ddb663

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-py3-none-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-py3-none-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 29e4a2607bd407d9552c502d38b45a05ec26a8e40cc7e94db9bb48f861fa5abc
MD5 7c76c91256ff54eede49679b0a896b77
BLAKE2b-256 2f5430bde6279d2f77e6c2838a89e9975038bba4adbfb029f9b8e01cf2813199

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-py3-none-manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-py3-none-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 53ed1bf71fcb8475dd0ef4912ab139c294c87b903724b6f4a8bd98e026862e6d
MD5 a4305d18cae3dee831fed802ff354ee5
BLAKE2b-256 cbed78acaa8e95e193a46925f7beeed45c29569d0ee572216df622bb0908abf3

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-py3-none-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-py3-none-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5597c051587f8757798216f2485e85eac583c3b343e9aa09127a3a6f82c65ee8
MD5 e65c357fd46ff9b3fe2ce4319026dab0
BLAKE2b-256 5bcbc13dfc4714547c4a63f27a50d5d0bbda655ef06d93595c016822ff771032

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9814adb768c23727a27792c77812cf4e2fd9853cd280eafa2bcfa62a99e8bd6e
MD5 87e2e72f2ed60d9af2455d9136a5b12b
BLAKE2b-256 7c6339a71aa9cea895885b3e644b573f1d05e00e368211efe76b9a63c7623512

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fb223456db6e5f7bd9bbd5cd969f05aae82ae21acc00643b60d81c770abd402b
MD5 176a9596e17bd8a5559ecbc04892d075
BLAKE2b-256 23f1dafce06a12fe2d61859aaceb81fbe3f3ed7907b81fcfa784416b1196dcfe

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 638bcca3d5b1885c6ec47be67bf712b00a9ab3d4b22ec0881f4889ad870bc7e8
MD5 7b5a304721ceb5495e8c8ea18a8d7b24
BLAKE2b-256 148306ea29be9e7c6dfd1224c98e37fef2e20c63ceffa7fb71622bc82b55da1d

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 901ee48c23f70193d1a7bc2d9ee297df66081dd5f46f0ca011be4f70dec80dab
MD5 324c6a828f753fee8df8e40bd5725e11
BLAKE2b-256 066d866cacf6f17db488cbe117dd8e18712b4e316f16e61b9e6e104d4ce4b512

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c47150aa12f775e22efff1eee9f0f6beee542a7aa1a985c271b1997d340184f
MD5 1096c99ebd9791486f864135f481d324
BLAKE2b-256 6ebada13d47dacc84bfab52310e74f954eb440c5cdee11ff8786228f17343a3d

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 963f7c4c91e3f51c998eeff1b3fb24a52a8a34da4f956e470f4b068bb47b78ee
MD5 3416bacd0624020be23897a828f8edcc
BLAKE2b-256 c4aa0c827bd35716d91b5a4a2a6c5ca7638d936e6055dec8ce85414383ab887f

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 ba32efcccfe2c58f4d01115440d1672b4eb26cdd6fc5b5818f1fb41f7c3e1889
MD5 ed4321dce14822099dd03f68d7295a0c
BLAKE2b-256 801aa681c0093eea33b18a7348b398302628ab96647f59eaf06a5a047e8a1f39

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7594a6d32cda2b49df3fd9abf9b37c8d2f3eab5df45c24056b4a671ac661619
MD5 0f96a9d292e4da10beee62a1ef96c1d3
BLAKE2b-256 d8a75c57f05def91ff11528f0aa0d4c23efc99fa064ec69c262fedc6c9885697

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f627c5bf5759fdd90195b0c0431f99cff4867d212a67b384442c51136a098ed7
MD5 33e7584487c36ce8d93e600076a9a241
BLAKE2b-256 cc0286d631595ec1c5678e23e9359741d2dea460be0712b41a243281b37e90ba

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 aa9cd6e24126d4afb3752a3e70fce39f92d0e1a58a236ddf6ee823ff7dba28ee
MD5 1bc395d3fa83158c4e7742ba663294cb
BLAKE2b-256 ef41fe19a56aa8ea7e453311f2b4fd2bfb172d21bd72ef6ae0fd40c304c74edf

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8b2918c19e0d48f5f20df458c84692e2a054f02d9df25e6c3c930063eca64c1
MD5 503e3201b3c37c090404bce4241e5403
BLAKE2b-256 b5349c436ec85f7234b468e49380f57cc784b4e22f058febe17221f25ce85c4b

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4a440f725f3b99133de610bfec93d570b13826f89616377715b9cd60424db6e
MD5 924766aa7e4520bf015fc5e2f2e698c3
BLAKE2b-256 b38e0e5671f3950fd2049bbeb8c965cb53e143bfd72869e5e4c60dda572121cd

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 dae7a1879918f6544201d33666909b040a46421054a50e0f773e0d870ed7438d
MD5 6b29bfdf767a44f57efcaa663004ecc5
BLAKE2b-256 805251046f428e813270cd959bee9d2343f103c10adf10e957f69d6710a38ab8

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bec703ad90b35a848e05e1b40bf0050da7ca28ead7ac4be724ae5ac2653a1a0
MD5 26b4e9a86a9c868c88b2b297b0258184
BLAKE2b-256 d0165b36358158b7debcae7b62fe9b6d9874c60e445b37b1e51b7c5d00c6572b

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 72990192cb63872c47d5e5fefe230a401b87fd59d257ee577d61c9e5564c62e5
MD5 f9fa22522e1aad502ab6b1a747295747
BLAKE2b-256 5e5e62adbcf4d96a533d71dbd951a3c101019989c8ce8796e267d6509ba12138

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d961f4123bb3c447d9fcdcb67e1530c366f10ab3a0c7d1c0c9943050936d4877
MD5 e1f807bb9118d306159ceeb5d35db0d1
BLAKE2b-256 7119c5b0f64269d396dbc9f06d4b7fa8400c0282143640ebc8cbad84553ee4ee

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e8d5ff39f0a9968952cce548e8e08f849141a4fcc1290b1c17c032ba697b9d7
MD5 c719d59cca0067103952f4af5e8e3e6f
BLAKE2b-256 ca5357e380b6b88dcbb47a6cad077abdc1fbdd12bf153f8e2ed8e48c5ffacbbd

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b84bff0391ad4abe25c2740c7aec0e3de316fdf7764007f41e248422a7760a7f
MD5 087f3d3512e205219fe5959ac5bd492f
BLAKE2b-256 fcc248b61c5668e8a0692a823b8c0a965b39c80768d82cd3c0d2f5b17ead6e43

See more details on using hashes here.

File details

Details for the file watchdog-5.0.2-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for watchdog-5.0.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 14dd4ed023d79d1f670aa659f449bcd2733c33a35c8ffd88689d9d243885198b
MD5 940bfee4ce342320de59ab97d27fbf58
BLAKE2b-256 e3db83ae143fced93f7e5962d2aa6f938d3986a5931c6e68dafea65d40b40fd3

See more details on using hashes here.

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