inflearn logo
강의

Course

Instructor

First Steps in Task Automation: Sending Bulk Emails and Completing a Crawling Project with Python

Sending mail using Gmail API

샘플 코드가 다른거 같아요.

Resolved

371

dnehdgus5253306

2 asked

1

안녕하세요, 수강생 여러분

  1. 학습 관련 내용을 질문해주세요!

     

영상에나온 Gmail Api python 샘플 코드와 현재 구글에서 제공하는 샘플 코드가 다른거같아요.

영상에서 나온 코드를 직접 타이핑 하면될까요?

참고로 구글에서 제공하는 샘플코드는 아래와 같아요.

import os.path

from google.auth.transport.requests import Request
from google.oauth2.credentials import Credentials
from google_auth_oauthlib.flow import InstalledAppFlow
from googleapiclient.discovery import build
from googleapiclient.errors import HttpError

# 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.
  """
  creds = None
  # 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.
  if os.path.exists("token.json"):
    creds = Credentials.from_authorized_user_file("token.json", SCOPES)
  # If there are no (valid) credentials available, let the user log in.
  if not creds or not creds.valid:
    if creds and creds.expired and creds.refresh_token:
      creds.refresh(Request())
    else:
      flow = InstalledAppFlow.from_client_secrets_file(
          "credentials.json", SCOPES
      )
      creds = flow.run_local_server(port=0)
    # Save the credentials for the next run
    with open("token.json", "w") as token:
      token.write(creds.to_json())

 

 

  1. 개인적으로 스크래핑/크롤링하는 사이트에 대한 질문에 대해서는 답변을 드리지 않아요!

python slack beautifulsoup github-actions gmail-api

Answer 1

1

hijuuny2858

안녕하세요 우동현님!

먼저 강의에 나온코드는 구글 샘플 코드를 참조한 코드이며, 약간 변형이 있습니다.

강의에 나온것을 사용하시면 되며, 복사를 원하시는 경우 아래 깃허브 주소에서 가져가시면 됩니다!

https://github.com/heohyunjun/Inflearn-road-to-business-automation

감사합니다, 추가 질문있으신 경우 언제든 남겨주세요!

1

dnehdgus5253306

네 감사합니다.

실행되었습니다.^^

 

친절한 설명 감사합니다.

영상 다운로드는 안되나요?

0

5

0

수강자료 다운로드 관련 문의

0

11

2

Opus/Sonnet 버전 관련 문의

1

13

2

"run_nvidia_gpu.bat" 실행후

0

11

1

섹션2 질문이요

1

16

2

섹션 2

0

12

1

섹션1.9 질문입니다!

1

22

3

웹서비스 방법

0

20

1

MCP 정의가 잘못되어 있음 (Chapter2)

0

21

1

수강 연장 문의드립니다.

0

27

2

13. (App 2) 기본기 훈련 에서

0

29

1

채점 프로그램 미작동

0

22

2

챌린지 시작일 문의

0

34

0

2. 어떤 도구를 사용하는 것이 가장 유리할까? 강의 중

0

27

1

안녕하세요 ppt 자료 메일로 부탁드립니다

0

18

1

11차시 Antigravity IDE 설치 후

0

30

1

링크드 리스트 중간 삽입삭제 시간복잡도 질문

0

28

1

Kaggle 노트북(predict.ipynb) 관련

1

33

2

처음 에이전트 설정을 잘못 했을 경우 수정 하는 방법

0

33

1

강의 연장 문의

0

31

2

수강 신청 연장 문의드립니다.

0

46

2

26년2회 실기기출은 언제쯤...

0

52

2

vs code와 github연결 방법을 모르겠어요

0

305

1

토큰 문제가 발생했어요

1

526

1