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

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

### Installation
pip install up_or_down

### Usage
```python
from website_checker import checker

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

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

