Python으로 Gmail API에 연결
여기에서 목표는 선택한 이메일 집합에 대해 Gmail을 쿼리할 수 있도록 하는 것입니다. 처리한 다음 알림을 보냅니다. 이것은 다른 서비스의 봇과 함께 작동하도록 변경할 수 있습니다.
시작하겠습니다. 나는 이미 좋은 가이드가 있다고 믿기 때문에 여기에서 지름길을 택할 것입니다. 그런 다음 이전에 수행한 작업을 다시 해시해서는 안 됩니다. 당신이 그것에 추가하지 않는 한. 따라서 아래 가이드 중 하나를 따른 다음 준비가 되면 2단계로 이동하는 것이 좋습니다.
Python 및 Gmail API 시작하기. 로 이동
Python Quick Start 또는 내가 선호하는 옵션A Beginner’s Guide to the Gmail API and Its Documentation으로 잘 제시되고 유익한 것으로 나타났습니다.
API 활성화, 필요한 모듈 설치 및 제공된 코드 복사로 요약됩니다. Google에서 제공할 자격 증명 파일을 다운로드하는 것을 잊지 마십시오.
참고: 저는 python 3을 사용할 것입니다.
pip install --upgrade google-api-python-client google-auth-httplib2 google-auth-oauthlib
파일에 다음 코드를 추가하고 gmail.py라고 부를 수 있습니다.
참고: 다음을 제거했습니다.
from __future__ import print_function
Python 2를 사용하는 경우 이것을 유지하십시오.
import pickle
import os.path
from googleapiclient.discovery import build
from google_auth_oauthlib.flow import InstalledAppFlow
from google.auth.transport.requests import Request
# If modifying these scopes, delete the file token.pickle.
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.pickle 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.pickle'):
with open('token.pickle', 'rb') as token:
creds = pickle.load(token)
# 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.pickle', 'wb') as token:
pickle.dump(creds, token)
service = build('gmail', 'v1', credentials=creds)
# 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()
로그인 과정에 대한 메모입니다. Safari를 사용하는 경우 작동하지 않을 수 있으므로 필요한 경우 Brave 또는 다른 브라우저를 사용하십시오. 이를 위해 터미널에서 생성된 링크를 복사하여 붙여넣을 수 있습니다.
완료되면. 시리즈의 다음 기사로 이동할 수 있습니다.
Reference
이 문제에 관하여(Python으로 Gmail API에 연결), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/basman/connecting-to-gmail-api-with-python-546b텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)