Metadata-Version: 1.1
Name: isitup
Version: 0.3.0
Summary: Check whether a website is up or down
Home-page: http://github.com/lord63/isitup
Author: lord63
Author-email: lord63.j@gmail.com
License: MIT
Description: isitup
        ======
        
        |Latest Version| |Build Status|
        
            Is it up?
        
        Check whether a website is up or down. Using
        `isitup <https://isitup.org/api/api.html>`__'s API. Inspired by
        `is-up <https://github.com/sindresorhus/is-up>`__.
        
        Install
        -------
        
        ::
        
            $ pip install isitup
        
        Usage
        -----
        
        -  CLI
        
           ::
        
               $ isitup github.com
               Yay, github.com is up.
               It took 0.022 ms for a 301 response code with an ip of 192.30.252.130
        
        -  API
        
           ::
        
               >>> from isitup.main import check
               >>> check('github.com')
               u'Yay, github.com is up.\nIt took 0.022 ms for a 301 response code with an ip of 192.30.252.130'
        
        License
        -------
        
        MIT.
        
        .. |Latest Version| image:: http://img.shields.io/pypi/v/isitup.svg
           :target: https://pypi.python.org/pypi/isitup
        .. |Build Status| image:: https://travis-ci.org/lord63/isitup.svg
           :target: https://travis-ci.org/lord63/isitup
        
Keywords: website up down check cli
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
