Metadata-Version: 2.4
Name: ASDFGH
Version: 0.1.0
Summary: A colorful terminal clock that updates in place
Home-page: https://github.com/yourusername/ASDFGH
Author: Your Name
Author-email: your.email@example.com
Project-URL: Bug Tracker, https://github.com/yourusername/ASDFGH/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: colorama>=0.4.0
Dynamic: license-file

# ASDFGH - Colorful Terminal Clock

A Python library that displays a continuously updating colored clock in your terminal.

## Installation

```bash
pip install ASDFGH
```

## Usage

```python
from ASDFGH import ColorClock

# Basic usage
clock = ColorClock()
clock.display()  # Press Ctrl+C to stop

# With options
clock = ColorClock(colored=False, military_time=True, show_date=True)
clock.display()
```

## Features

- Continuously updates in the same line
- Random colors (can be disabled)
- Supports 12/24 hour format
- Optional date display
- Graceful keyboard interrupt handling
