Metadata-Version: 2.1
Name: waralert
Version: 0.0.2
Summary: This project is a very simplified version of a bug tracking and reporting system like Sentry
Home-page: https://github.com/themusharraf/waralert
Author: Musharraf Ibragimov
Author-email: meibrohimov@gmail.com
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.8.0
Description-Content-Type: text/markdown
Requires-Dist: python-dotenv==1.0.1


# Waralert 
- Bu loyiha `Sentry` kabi xatolarni kuzatish va bildirish tizimining juda soddalashtirilgan versiyasidir.
Haqiqiy loyiha uchun yuqoridagi kodlarni yanada kengaytirishingiz, qo'shimcha xavfsizlik choralari qo'shishingiz, va ma'lumotlarni to'g'ri boshqarish uchun optimallashtirishingiz kerak bo'ladi. 
Agar bu misolni yanada rivojlantirmoqchi bo'lsangiz `pull requests `qiling yoki qo'shimcha yordam kerak bo'lsa, savollarni bemalol so'rashingiz mumkin. [Gmail](https://mail.google.com/mail/u/0/?tab=rm&ogbl#search/meibrohimov%40gmail.com?compose=new), [Telegram](https://t.me/Musharraaf) 

## Email alert 
![image](https://github.com/user-attachments/assets/6c6fa290-1bbb-40c4-a59e-ee80cbeca110)

## Uni qanday ishlatish kerak 
- create `.env` file
```commandline
EMAIL= 
PASSWORD=
TO=
```
## example 
```python
from waralert.alert import send_exception


@send_exception
def div():
    a = 3 // 0
    print(a)
div()
```
