Metadata-Version: 1.1
Name: existence
Version: 0.1.1
Summary: Checks static .html files for bad links
Home-page: https://github.com/ckcollab/existence
Author: Eric Carmichael
Author-email: eric@ckcollab.com
License: MIT
Description: existence
        =========
        
        Checks static html files for bad or empty links. See [here](http://www.ericcarmichael.com/writing-my-first-python-package.html) why I wrote this, I hate missing details!
        
        # Example bad or empty links
        
        ```html
        <a href=""></a>            Empty
        <a href></a>               Empty
        <a href="python.org"></a>  Any bad link will fail, this one is missing http://
        ```
        
        # Usage
        
        Command line
        
            > python existence.py /path/to/dir
        
        Python
        
        ```python
        from existence import check_directory
        check_directory("/path/to/dir")
        ```
        
        Existence will recursively check each subdir as well!
        
        
        # Running tests
        
            > python -m unittest discover
        
Keywords: link checker
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
