Есть ли простой способ получить доступ к моей учетной записи Gmail и загрузить конкретное вложение файла Excel с определенного адреса электронной почты? - PullRequest
0 голосов
/ 26 декабря 2018

Я получил электронное письмо с файлом Excel в виде вложения.

Я бы

Я хотел бы использовать python для следующих действий:

  • Доступ к моей учетной записи Gmail, когда я предоставляю свое имя пользователя и пароль

  • Поиск конкретного электронного письма по теме письма

  • Загрузитьодно (или все) вложение из этого письма в папку по моему выбору

Я видел несколько руководств, но ни одно из них не работает для меня, и мне интересно, существует ли какая-либо известная третья сторонаlib, которая выполняет следующие действия.

Я использовал следующий найденный мной скрипт:

import email, getpass, imaplib, os

detach_dir = '.'  # directory where to save attachments (default: current)
user = input("Enter your GMail username:")
pwd = getpass.getpass("Enter your password: ")

# connecting to the gmail imap server
m = imaplib.IMAP4_SSL("imap.gmail.com")
m.login(user, pwd)
m.select("cs2043")  # here you a can choose a mail box like INBOX instead
# use m.list() to get all the mailboxes

resp, items = m.search(None,
                   "ALL")  # you could filter using the IMAP rules here 
(check http://www.example-code.com/csharp/imap-search-critera.asp)
items = items[0].split()  # getting the mails id

for emailid in items:
    resp, data = m.fetch(emailid,
                         "(RFC822)")  # fetching the mail, "`(RFC822)`" means 
"get the whole stuff", but you can ask for headers only, etc
    email_body = data[0][1]  # getting the mail content
   mail = email.message_from_string(email_body)  # parsing the mail content 
to get a mail object

    # Check if any attachments at all
    if mail.get_content_maintype() != 'multipart':
        continue

    print
    "[" + mail["From"] + "] :" + mail["Subject"]

    # we use walk to create a generator so we can iterate on the parts and 
forget about the recursive headach
    for part in mail.walk():
        # multipart are just containers, so we skip them
        if part.get_content_maintype() == 'multipart':
            continue

        # is this part an attachment ?
        if part.get('Content-Disposition') is None:
            continue

        # filename = part.get_filename()

        filename = mail["From"] + "_hw1answer"

        att_path = os.path.join(detach_dir, filename)

        # Check if its already there
        if not os.path.isfile(att_path):
            # finally write the stuff
            fp = open(att_path, 'wb')
            fp.write(part.get_payload(decode=True))
            fp.close()

Проблема этого скрипта состоит в том, что как только я ввожу свой правильный пароль, я получаю:

Traceback (most recent call last):
  File "gmail_report_analysis.py", line 9, in <module>
    m.login(user, pwd)
  File "C:\Users\Amir\AppData\Local\Programs\Python\Python36\lib\imaplib.py", 
line 593, in login
    raise self.error(dat[-1])
imaplib.error: b'[AUTHENTICATIONFAILED] Invalid credentials (Failure)'

1 Ответ

0 голосов
/ 26 декабря 2018

Вы можете использовать API Python для Gmail для автоматизации действий с вашей учетной записью Gmail.

  1. включить API Gmail на консоли разработчика Google и загрузить credentials.json
  2. установить библиотеку Python- pip install --upgrade google-api-python-client oauth2client
  3. создайте свой файл кода Python -

    from __future__ import print_function
    from googleapiclient.discovery import build
    from httplib2 import Http
    from oauth2client import file, client, tools
    
    # If modifying these scopes, delete the file token.json.
    SCOPES = 'https://www.googleapis.com/auth/gmail.readonly'
    
    def main():
        """Shows basic usage of the Gmail API.
        Lists the user's Gmail labels.
        """
        # The file token.json stores the user's access and refresh tokens, and is
        # created automatically when the authorization flow completes for the first
        # time.
        store = file.Storage('token.json')
        creds = store.get()
        if not creds or creds.invalid:
            flow = client.flow_from_clientsecrets('credentials.json', SCOPES)
            creds = tools.run_flow(flow, store)
        service = build('gmail', 'v1', http=creds.authorize(Http()))
    
        # Call the Gmail API
        results = service.users().labels().list(userId='me').execute()
        labels = results.get('labels', [])
    
        if not labels:
            print('No labels found.')
        else:
            print('Labels:')
            for label in labels:
                print(label['name'])
    
    if __name__ == '__main__':
        main()
    

Приведенный выше код предназначен только для входа в учетную запись Gmail и получения ярлыков вВаш почтовый ящик Gmail.Есть и другие действия, которые вы можете выполнять, например, поиск сообщений и загрузка вложений.Пожалуйста, обратитесь здесь для получения дополнительной информации.

...