Metadata-Version: 2.1
Name: webwatchdog
Version: 1.0.2
Summary: A Python library to check if a website is up or down.
Author: itsknk
Description-Content-Type: text/markdown

## WebWatchDog
[![PyPI version](https://badge.fury.io/py/webwatchdog.svg)](https://badge.fury.io/py/webwatchdog)

A Python library to check if a website is up or down.

### Installation
pip install webwatchdog

### Usage
```python
from webwatchdog import up_or_down

url = "https://example.com"
status, message = up_or_down.check_website(url)

if status:
    print("✓", message)
else:
    print("✗", message)
```

