当前位置: 首页>>代码示例>>Python>>正文


Python AlchemyAPI.microformats方法代码示例

本文整理汇总了Python中alchemyapi.AlchemyAPI.microformats方法的典型用法代码示例。如果您正苦于以下问题:Python AlchemyAPI.microformats方法的具体用法?Python AlchemyAPI.microformats怎么用?Python AlchemyAPI.microformats使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在alchemyapi.AlchemyAPI的用法示例。


在下文中一共展示了AlchemyAPI.microformats方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: print

# 需要导入模块: from alchemyapi import AlchemyAPI [as 别名]
# 或者: from alchemyapi.AlchemyAPI import microformats [as 别名]
#Feeds
print('Checking feeds . . . ')
response = alchemyapi.feeds('text', test_text);
assert(response['status'] == 'ERROR')	#only works for html and url content
response = alchemyapi.feeds('html', test_html, {'url':'test'});
assert(response['status'] == 'OK')
response = alchemyapi.feeds('url', test_url);
assert(response['status'] == 'OK')
print('Feed tests complete!')
print('')



#Microformats
print('Checking microformats . . . ')
response = alchemyapi.microformats('text', test_text);
assert(response['status'] == 'ERROR')	#only works for html and url content
response = alchemyapi.microformats('html', test_html, {'url':'test'});
assert(response['status'] == 'OK')
response = alchemyapi.microformats('url', test_url);
assert(response['status'] == 'OK')
print('Microformat tests complete!')
print('')
print('')


print('**** All tests complete! ****')



开发者ID:AditiKhullar,项目名称:tobuyornot,代码行数:29,代码来源:tests.py

示例2: print

# 需要导入模块: from alchemyapi import AlchemyAPI [as 别名]
# 或者: from alchemyapi.AlchemyAPI import microformats [as 别名]


print('')
print('')
print('')
print('############################################')
print('#   Microformats Parsing Example           #')
print('############################################')
print('')
print('')

print('Processing url: ', demo_url)
print('')

response = alchemyapi.microformats('url',demo_url)

if response['status'] == 'OK':
	print('## Response Object ##')
	print(json.dumps(response, indent=4))

	print('')
	print('## Microformats ##')
	for microformat in response['microformats']:
		print('Field: ', microformat['field'].encode('utf-8'))
		print('Data: ', microformat['data'])
		print('')

else:
	print('Error in microformats parsing call: ', response['statusInfo'])
开发者ID:AditiKhullar,项目名称:tobuyornot,代码行数:31,代码来源:example.py

示例3: print

# 需要导入模块: from alchemyapi import AlchemyAPI [as 别名]
# 或者: from alchemyapi.AlchemyAPI import microformats [as 别名]
print("")


print("")
print("")
print("")
print("############################################")
print("#   Microformats Parsing Example           #")
print("############################################")
print("")
print("")

print("Processing url: ", demo_url)
print("")

response = alchemyapi.microformats("url", demo_url)

if response["status"] == "OK":
    print("## Response Object ##")
    print(json.dumps(response, indent=4))

    print("")
    print("## Microformats ##")
    for microformat in response["microformats"]:
        print("Field: ", microformat["field"].encode("utf-8"))
        print("Data: ", microformat["data"])
        print("")

else:
    print("Error in microformats parsing call: ", response["statusInfo"])
开发者ID:jaybird23,项目名称:market_sentimentalism2,代码行数:32,代码来源:example.py


注:本文中的alchemyapi.AlchemyAPI.microformats方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。