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 |
Tags
- pyTorch
- Anaconda
- keras
- Jupyter notebook
- error
- colaboratory
- TensorFlow
- FIle
- Deep Learning
- ubuntu
- Windows 10
- object detection
- face_recognition
- shakeratos
- urllib
- colab
- raspberry pi
- dataset
- CUDA
- python
- dlib
- python3
- ppc64le
- gpu memory
- windows
- YouTube 8M
- download
- linux
- install
- 딥러닝
Archives
- Today
- Total
목록SMTPAuthenticationError (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