Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Anaconda
- raspberry pi
- python3
- object detection
- shakeratos
- colab
- TensorFlow
- windows
- face_recognition
- keras
- FIle
- 딥러닝
- pyTorch
- download
- gpu memory
- Deep Learning
- colaboratory
- CUDA
- ppc64le
- Jupyter notebook
- dataset
- install
- linux
- ubuntu
- urllib
- python
- dlib
- error
- Windows 10
- YouTube 8M
Archives
- Today
- Total
목록이메일 (1)
Shakerato
gmail 계정 연동 python smtplib로 이메일 전송하기
# gamil_python_test.py import socket import smtplib from email.mime.text import MIMEText def send_email(senders='test@gmail.com', receiver='test@gmail.com', content='Hello.'): print('email 전송') s = smtplib.SMTP(host='smtp.gmail.com', port=int(587)) # TLS:587 SSL:465 s.ehlo() # say Hello s.starttls() # TLS 보안 시작 s.login(user=str('USER ID'), password=str('USER PASSWORD'), initial_response_ok=True)..
카테고리 없음
2020. 5. 22. 17:56