-
Notifications
You must be signed in to change notification settings - Fork 0
/
amigo_invisible.py
78 lines (72 loc) · 2.18 KB
/
amigo_invisible.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import random
import csv
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
# Configuracion
# csv con email,nombre
FICHERO_PARTICIPANTES = 'participantes.csv'
SENDER = 'your_email@domain.com'
USERNAME = "username"
PASSWORD = "password"
MAIL_SERVER = 'smtp.gmail.com:587'
SUBJECT = 'Tu amigo invisible'
##########
# Funcion para enviar correos
def send_mail(recipient, amigo_invisible):
msg = MIMEMultipart('alternative')
msg['Subject'] = SUBJECT
msg['From'] = SENDER
msg['To'] = recipient
text = "Hola!\nTu amigo invisible es \n"+amigo_invisible
html = """\
<html>
<head></head>
<body>
<p>Hola!<br>
Tu amigo invisible es<br>
<b>"""+amigo_invisible+"""</b>
</p>
</body>
</html>
"""
part1 = MIMEText(text, 'plain')
part2 = MIMEText(html, 'html')
msg.attach(part1)
msg.attach(part2)
username = USERNAME
password = PASSWORD
# Enviando el correo
server = smtplib.SMTP(MAIL_SERVER)
server.starttls()
server.login(username,password)
server.sendmail(SENDER, recipient, msg.as_string())
server.quit()
print("Enviado correo a",recipient)
def leer_participantes():
with open(FICHERO_PARTICIPANTES, mode='r') as f:
reader = csv.reader(f)
participantes = list(reader)
return participantes
# Creamos una nueva lista con orden aleatorio
def create_random_list(participantes):
lista_random=[]
temp = participantes.copy()
num_part = len(participantes)
for i in range(0,num_part):
num = random.randint(1,len(temp))
lista_random.append(temp[num-1])
temp.pop(num-1)
return lista_random
# Hacemos el sorteo asignandole a cada participante el siguiente en la lista de forma circular
def hacer_sorteo(lista_random):
num_part = len(lista_random)
for i in range(0,num_part):
send_mail(lista_random[i][0], lista_random[(i+1)%(num_part)][1])
# Main function
def main():
participantes = leer_participantes()
lista_random = create_random_list(participantes)
hacer_sorteo(lista_random)
if __name__ == "__main__":
main()