Metadata-Version: 2.1
Name: keepyourdate
Version: 0.0.3
Summary: Simple daily event keeper.
Home-page: https://github.com/zizardev/keepyourdate
Author: Mishalov_Bogdan
Author-email: bogdanmissss@gmail.com
Project-URL: GitHub, https://github.com/zizardev/keepyourdate
Keywords: calendar keep date
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# KeepYourDate

## What is this? 
This is a **simple** library for storing and viewing events.

## Quick Guide 
```python
from keepyourdate import *
add("Name event", "Description event", "start date (example: 2024-10-28 10:00)", "end date(example: 2024-10-30 20:00)")
history()
```
Great job adding your first event. 

---

### Using
Delete event (To find out the ID use the command: `history`. 
```python
delete(id)
```
Reading events in different ways
```python
history() #All events.
today() #Events for today.
now() #Events that are happening at this hour.
archive() #Events that have expired.
```
---
## Developer 
my website: soon
