Compare commits

...

3 Commits

Author SHA1 Message Date
3wc 2e3175a222 Update requirements 2021-08-11 13:42:05 +02:00
3wc 4055530baf Black formatter 2021-08-11 13:41:31 +02:00
3wc 90da68359a Add command to run the thing 2021-08-11 13:32:20 +02:00
3 changed files with 23 additions and 19 deletions

View File

@ -9,4 +9,5 @@ git clone ssh://git@git.autonomic.zone:2222/3wordchant/mailboop.git
pip install -r requirements-dev.txt
cp .envrc.sample .envrc
envrc allow
python -m mailboop
```

View File

@ -21,7 +21,7 @@ def main():
messages = list(message_reader)
unread = list(filter(lambda x: '\\Seen' not in x.flags, messages))
unread = list(filter(lambda x: "\\Seen" not in x.flags, messages))
dates = [m.date.replace(tzinfo=None) for m in messages]
@ -34,17 +34,19 @@ def main():
count = len(dates)
count_unread = len(unread)
output = f'''\
output = f"""\
booping ur snoots :point_right:
total emails: **{count}**
unread: **{count_unread}**
median email: recevied **{median_date}**, {median_delta} ago
oldest email: recevied **{oldest_date}**, {oldest_delta} ago
'''
"""
print("sendin boops")
r = requests.post(os.getenv("ROCKETCHAT_HOOK_URL"), json={
r = requests.post(
os.getenv("ROCKETCHAT_HOOK_URL"),
json={
"alias": "mailboop",
"emoji": ":snake:",
"text": output,
@ -55,7 +57,8 @@ oldest email: recevied **{oldest_date}**, {oldest_delta} ago
# # "image_url": "/images/integration-attachment-example.png",
# "color": "#764FA5"
# }]
})
},
)
if __name__ == "__main__":

View File

@ -1,2 +1,2 @@
rocketchat-API==1.16.0
imap-tools==0.45.0
requests==2.26.0