How to Read Gmail using python

Publié le: 29 janvier 2020
sur la chaîne: Deeper Coders
149
1

gowthamcastrorio007@gmail.com

Code:
import poplib
import string, random
from io import StringIO ## for Python 3
from plone import rfc822
import logging

SERVER = "pop.gmail.com"
USER = "@gmail.com"
PASSWORD = "APPCODE"

connect to server
logging.debug('connecting to ' + SERVER)
server = poplib.POP3_SSL(SERVER)
#server = poplib.POP3(SERVER)

log in
logging.debug('log in')
server.user(USER)
server.pass_(PASSWORD)

Description:
POPLIB,
logging,
bytes,
listing server,


Sur cette page du site, vous pouvez voir la vidéo en ligne How to Read Gmail using python durée heure minute seconde en bonne qualité , qui a été Téléchargé par l'utilisateur Deeper Coders 29 janvier 2020, Partagez le lien avec vos amis et connaissances, sur youtube cette vidéo a déjà été regardée 149 fois et il a aimé 1 téléspectateurs. Bon visionnage!