Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ To make this script work, you need to do two things on the Pi:

1. Copy the `config.example.yml` file to a file named `config.yml`, and modify it with the email credentials for the account to be monitored.
2. Make sure Pip is installed: `sudo apt install -y python3-pip`
3. Run `python3 -m pip install imapclient pyyaml` to install required dependencies.
3. Run `pip3 install -r requirements.txt` to install required dependencies.

Then run `./email_check.py`, and prepare to be amazed! Or not, especially if it doesn't work.

Expand Down
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
imapclient==2.2.0
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The only thing I worry about is the long-term maintenance. For a project like this that isn't too specific in bleeding-edge feature usage, I'm happy to just leave the version numbers off and let it install latest.

pyyaml==5.1