move param

This commit is contained in:
quenousimporte 2024-04-10 17:26:01 +02:00
parent 982ff576c5
commit 65e8d98646
1 changed files with 1 additions and 3 deletions

View File

@ -7,6 +7,7 @@ import os
username = ""
password = ""
imapserver = ""
N = 500
if not os.path.isdir('notes'):
os.mkdir('notes')
@ -14,9 +15,6 @@ if not os.path.isdir('notes'):
def clean(text):
return "".join(c if c.isalnum() else "_" for c in text)
# number of top emails to fetch
N = 200
imap = imaplib.IMAP4_SSL(imapserver)
imap.login(username, password)