Metadata-Version: 2.4
Name: DayOfWeekLib
Version: 0.1.0
Summary: Get day of the week from a date
Author: Nesma Mohamad  Al-Btry
Author-email: Nesma Mohamad  Al-Btry <nasmhalbtri23@gmail.com>
License: MIT License
        
        Copyright (c) 2025
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        ...
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: license-file
Dynamic: requires-python

# DayOfWeekLib

مكتبة لمعرفة اليوم من التاريخ.

## التثبيت

```bash
pip install DayOfWeekLib
```

## CMD

```bash
dayofweeklib 2025-09-23
# Day of week: Tuesday
```

## Python

```python
from day_of_week_lib import get_day_of_week
print(get_day_of_week("2025-09-23"))  # Tuesday
```
