Metadata-Version: 2.1
Name: downforeveryone
Version: 0.1.1
Summary: checks if a website is really down via isup.me
Home-page: https://github.com/rpdelaney/isup
Author: Ryan Delaney
Author-email: ryan.delaney@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Dist: requests (>=2.22,<3.0)
Project-URL: Repository, https://github.com/rpdelaney/isup
Description-Content-Type: text/x-rst

downforeveryone
======================
|VERSION| |CIRCLECI| |LICENSE| |MAINTAINED|

.. |CIRCLECI| image:: https://img.shields.io/circleci/build/gh/rpdelaney/downforeveryone
   :target: https://circleci.com/gh/rpdelaney/downforeveryone/tree/master
.. |LICENSE| image:: https://img.shields.io/badge/license-Apache%202.0-informational
   :target: https://www.apache.org/licenses/LICENSE-2.0.txt
.. |MAINTAINED| image:: https://img.shields.io/maintenance/yes/2019?logoColor=informational
.. |VERSION| image:: https://img.shields.io/pypi/v/downforeveryone
   :target: https://pypi.org/project/downforeveryone

Checks if a website is down for everyone or just you, via isup.me.

Installation
------------

::

    pip3 install downforeveryone

============
Development
============

To install development dependencies, you will need `poetry <https://docs.pipenv.org/en/latest/>`_
and `pre-commit <https://pre-commit.com/>`_.

::

    poetry install
    pre-commit install --install-hooks

Usage
-----

::

    $ isup -h
    usage: isup [-h] url

    checks if a site is down for everyone or just you

    positional arguments:
    url         url to test

    optional arguments:
    -h, --help  show this help message and exit
    $ isup google.com ; echo $?
    just you.
    1
    $ isup thingthatsdown.com ; echo $?
    it's down.
    0

