Metadata-Version: 2.1
Name: fsnotify
Version: 0.2.1
Summary: Simple file watching
Home-page: https://github.com/fabioz/fsnotify
Author: Fabio Zadrozny
Author-email: fabiofz@gmail.com
License: MIT license
Description: <!-- Uncomment these lines after releasing the package to PyPI for version and downloads badges -->
        <!--[![PyPI Shield](https://img.shields.io/pypi/v/fsnotify.svg)](https://pypi.python.org/pypi/fsnotify)-->
        <!--[![Downloads](https://pepy.tech/badge/fsnotify)](https://pepy.tech/project/fsnotify)-->
        [![Github Actions Shield](https://img.shields.io/github/workflow/status/fabioz/fsnotify/Run%20Tests)](https://github.com/fabioz/fsnotify/actions)
        
        
        
        # fsnotify
        
        Simple python file watching with throttling when polling.
        
        - Homepage: https://github.com/fabioz/fsnotify
        
        # Overview
        
        The idea for this project is making the fastest possible polling-based file watching
        with throttling to avoid high CPU usage when polling.
        
        # Install
        
        ## Requirements
        
        **fsnotify** has been developed and tested on [Python 2.7, 3.5, 3.6, 3.7 and 3.8](https://www.python.org/downloads/)
        
        
        ## Install from PyPI
        
        ```bash
        pip install fsnotify
        ```
        
        This will pull and install the latest stable release from [PyPI](https://pypi.org/).
        
        
        # History
        
        FSNotify 0.2.0
        ---------------
        
        Paths to track may now be a List[TrackedPath], indicating whether each path
        should be tracked recursively or not.
        
        
        FSNotify 0.1.6
        ---------------
        
        First stable version. Should be able to properly do recursive file watching
        of all passed paths using throttling to avoid high CPU usage when polling
Keywords: fsnotify filesystem notifications watchdog watchgod
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*
Description-Content-Type: text/markdown
Provides-Extra: test
Provides-Extra: dev
