如何使用Python从Gmail正文读取特定数据?

时间:2018-12-26 09:07:35

标签: python gmail

我尝试从此链接https://github.com/abhishekchhibber/Gmail-Api-through-Python使用Python使用gmail阅读器,现在我想从特定数据中读取每封电子邮件。 例如这样的例子:

Name : John Doe
Address : Las Vegas
City : New York

我只希望打印输出为City : New York ..该如何解决? 谢谢!

1 个答案:

答案 0 :(得分:0)

正如在Github存储库中提到的那样,输出将是这样的字典。

output = {
              'Name' : 'John Doe',
              'Address' : 'Las Vegas',
              'City' : 'New York'
         }

现在,您只需要打印出想要的内容,例如:

print("City: " + output.get("City"))

output.get("City")将返回键City的值。