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