Python - 通过循环访问URL列表进行API调用

我试图使用Alchemy API为URL列表提取关键字/实体 - 但是作为Python的相对新手 - 我不知道该怎么做这和我读过的无数堆栈溢出文章并没有让我产生任何结果。Python - 通过循环访问URL列表进行API调用

因此,有没有人知道我可以在列表中或在单独的txt/csv文件中对API列表进行API调用?

import json 

from watson_developer_cloud import NaturalLanguageUnderstandingV1

from watson_developer_cloud.natural_language_understanding_v1 \

import Features, EntitiesOptions, KeywordsOptions

natural_language_understanding = NaturalLanguageUnderstandingV1(

username='Username',

password='Password',

version='2017-02-27')

response = natural_language_understanding.analyze(

url=('https://www.example.com/'),

features=Features(

entities=EntitiesOptions(

emotion=True,

sentiment=True,

limit=2),

keywords=KeywordsOptions(

emotion=True,

sentiment=True,

limit=2)))

print(json.dumps(response, indent=2))

回答:

您可以从一个文本文件

myFile = open("myText.txt", "r") 

URL = myFile.readline()

就遍历从文本文件中读取他们读他们一行行。

以上是 Python - 通过循环访问URL列表进行API调用 的全部内容, 来源链接: utcz.com/qa/262774.html

回到顶部