A smart assistant that automatically checks the weather in Tokyo and sends you notifications wherever it's convenient: to Discord, LINE, or Email.
Set it up once — and the weather comes to your messenger by itself.
notify/
├── discord/
│ ├── .env
│ ├── api_req.py
│ └── notify.py
├── gmail/
│ ├── .env
│ ├── api_req.py
│ └── notify.py
├── line/
│ ├── .env
│ ├── api_req.py
│ └── notify.py
├── twitter(X)/
│ ├── .env
│ ├── eew.py
│ └── notify.py
│ └── post_send.py
├── .gitignore
├── LICENSE
├── README.md
└── requirements.txt
# Clone the repository
git clone https://github.com/VersaLog/notify.git
cd notify
# Install dependencies
pip install -r requirements.txt