Metadata-Version: 2.4
Name: timezones-lib
Version: 1.0.0
Summary: Get current time in different timezones (PST, BST, WAT, CET, EST)
Home-page: https://github.com/username/timezones-lib
Author: TimezoneLib
Author-email: TimezoneLib <info@timezonelib.com>
License: MIT
Project-URL: Homepage, https://github.com/username/timezones-lib
Project-URL: Bug Reports, https://github.com/username/timezones-lib/issues
Project-URL: Source, https://github.com/username/timezones-lib
Keywords: timezone,time,cli,pytz
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: pytz>=2023.3
Dynamic: author
Dynamic: home-page
Dynamic: requires-python

# Timezones Library

A Python library and CLI tool for getting current time in different timezones: PST, BST, WAT, CET, and EST.

## Installation

```bash
pip install timezones-lib
```

## Usage

### Python Library
```python
from timezones_lib import get_time_in_timezone, get_all_times

# Get time for specific timezone
pst_time = get_time_in_timezone('PST')
print(f"PST: {pst_time}")

# Get all supported timezones
all_times = get_all_times()
for tz, time in all_times.items():
    print(f"{tz}: {time}")
```

### CLI Tool
```bash
# Show all timezones
tzlib --all

# Get specific timezone
tzlib --timezone PST

# Show available options
tzlib
```

## Supported Timezones
- **PST**: Pacific Standard Time (US/Pacific)
- **BST**: British Summer Time (Europe/London)
- **WAT**: West Africa Time (Africa/Lagos)
- **CET**: Central European Time (Europe/Berlin)
- **EST**: Eastern Standard Time (US/Eastern)

## Development

### Setup
```bash
git clone <repo-url>
cd timezones_lib
pip install -e .
```

### Testing
```bash
python -m pytest tests/
```

### Building
```bash
python -m build
```

## License
MIT
