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

downforeveryone
======================
|LANGUAGE| |VERSION| |LICENSE| |MAINTAINED| |CIRCLECI| |COVERAGE|
|MAINTAINABILITY| |STYLE|

.. |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/2022?logoColor=informational
.. |VERSION| image:: https://img.shields.io/pypi/v/downforeveryone
   :target: https://pypi.org/project/downforeveryone
.. |STYLE| image:: https://img.shields.io/badge/code%20style-black-000000.svg
   :target: https://github.com/psf/black
.. |LANGUAGE| image:: https://img.shields.io/pypi/pyversions/downforeveryone
.. |COVERAGE| image:: https://img.shields.io/codeclimate/coverage/rpdelaney/downforeveryone
   :target: https://codeclimate.com/github/rpdelaney/downforeveryone
.. |MAINTAINABILITY| image:: https://img.shields.io/codeclimate/maintainability-percentage/rpdelaney/downforeveryone
   :target: https://codeclimate.com/github/rpdelaney/downforeveryone

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

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

.. code-block :: console

    pip3 install downforeveryone

Usage
-----

.. code-block :: console

    $ 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

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

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

.. code-block :: console

    pre-commit install --install-hooks
    poetry install

`direnv <https://direnv.net/>`_ is optional, but recommended for convenience.

