Metadata-Version: 2.4
Name: DateTimeLib
Version: 0.1.0
Summary: Library to get current date and time
Author: Adel Amin Alashmouri
Author-email: Adel Amin Alashmouri <ashmouri12ty@gmail.com>
License: MIT License
        
        Copyright (c) 2025 Adel Amin Alashmouri.
         
Project-URL: Homepage, https://pypi.org/project/DateTimeLib/
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: license-file
Dynamic: requires-python

# DateTimeLib
مكتبة بسيطة لإرجاع الوقت والتاريخ الحالي (سنة، شهر، يوم، ساعة، دقيقة، ثانية).

## التثبيت
```bash
py -m pip install DateTimeLib
```

## الاستخدام من CMD
```bash
datetimelib
# النتيجة: 2025-09-19 15:20:30
```

## الاستخدام من Python
```python
from datetime_lib import get_current_datetime

print(get_current_datetime())
# 2025-09-19 15:20:30
```
