Metadata-Version: 1.0
Name: crash_hound
Version: 1.0
Summary: Monitor anything and get notifications directly on your iPhone
Home-page: http://www.amix.dk/
Author: amix
Author-email: amix@amix.dk
License: BSD
Description: crash_hound
        ---------------
        
        Crash Hound lets you script monitoring and lets you receive notifications directly on your iPhone (for free!).
        
        It works via notifo.com and a notifo.com account is required.
        
        For more information check out:
        http://amix.dk/blog/post/19526#Crash-Hound-scriptable-monitoring-and-free-phone-notifications
        
        Examples
        ----------
        
        Registers::
        
        from crash_hound import CrashHound, ReportCrash, CommonChecks
        
        def check_fn():
        if 42:
        raise ReportCrash('42 is true!')
        else:
        pass #Ignore
        
        
        crash_checker = CrashHound(YOUR_USERNAME,
        YOUR_API_TOKEN)
        
        crash_checker.register_check('42 Checker',
        check_fn,
        notify_every=60)
        
        crash_checker.register_check('Google.com Blah test',
        lambda: CommonChecks.website_check('http://google.com/blah'),
        notify_every=60)
        
        crash_checker.run_checks(check_interval=10)
        
        Copyright: 2010 by amix
        License: BSD.
Keywords: notifo crash hound notification sms crash reports monitoring
Platform: Any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
