Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kamigami55/anime-god
A python script to automatically check whether my favorite animes have been updated and notify me by email.
https://github.com/kamigami55/anime-god
anime python
Last synced: 10 days ago
JSON representation
A python script to automatically check whether my favorite animes have been updated and notify me by email.
- Host: GitHub
- URL: https://github.com/kamigami55/anime-god
- Owner: Kamigami55
- License: mit
- Created: 2017-07-01T03:40:57.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-03T16:30:01.000Z (over 6 years ago)
- Last Synced: 2024-11-24T17:12:23.524Z (2 months ago)
- Topics: anime, python
- Language: Python
- Homepage:
- Size: 43.9 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# anime-checker.py
A python script to automatically check whether my favorite animes have been updated and notify me by emailby Eason Chang
## Description
You should run this script with **python3**.This script does a one-time check.
This script contains **2 config files**:
- **.env** : stores environment variables of my email addresses and
password.
- **animes.json** : stores a list of my favorite animes, including title,
website url, and current episode number.
## Installation### 1. Edit your own .env:
Replace your own email addresses and password in **.env-example**, and rename it to **.env**### 2. Edit your own animes list in animes.json:
Add your own animes in **animes-example.json** (should follow the format), and rename it to **animes.json**### 3. Change script file mode:
Add execute permission to **anime-checker.py**
```
chmod a+x /path/to/your/anime-checker.py
```### 4. Set this script as a scheduled job using crontab:
```
crontab -e
```
Add this line at the buttom of the file (execute every 30 minutes):
```
*/30 * * * * /path/to/your/anime-checker.py
```