gpt4 book ai didi

python - 请求库和 validator.w3.org/nu

转载 作者:行者123 更新时间:2023-11-28 18:31:01 25 4
gpt4 key购买 nike

我想使用 validator.w3.org/nu 的 API。

文档:https://github.com/validator/validator/wiki/Service:-Input:-GET

我的代码:

validaror_url = "https://validator.w3.org/nu/"        
headers = { "Content-type": "text/html, charset=utf-8" }

ip_address = urllib.quote("http://www.artlebedev.ru/")
params = { "doc": ip_address, "out": "json"}

response = requests.get(validaror_url, headers=headers,
params=params)

我得到:

Response: <Response [200]>
content str: {"url":"http%3A//93.185.180.36/","messages":[{"type":"non-document-error","subType":"io","message":"Missing scheme"}]}\n

如果我使用另一个样本站点,再次出现非文档错误。

此错误在此处破译:https://github.com/validator/validator/wiki/Output:-JSON

但无论如何,这样的错误信息不应该出现。

如果我将请求更改为 unirest,一切都很好(有很多消息,它们是提供信息的消息)。但是unirest不适合我,因为不支持Python3。

我想,也许,问题是请求不能符合这个“只支持”&“作为查询参数分隔符。”;“不支持”(这是来自验证器的文档)。

嗯,请求不是教条。我需要的只是从验证器获得有意义的响应,而使用 Python3。如果 requests 不合适,也许我应该更改它。

你能帮我踢一下吗?

最佳答案

除了传递 url 和参数之外不要做任何事情

import requests
validaror_url = "https://validator.w3.org/nu/"
ip_address = "http://www.artlebedev.ru/"
params = { "doc": ip_address, "out": "json"}

response = requests.get(validaror_url,
params=params)

print(response.json())

这给你这样的输出:

 {'extract': 'аз... -->\n<table border="0" cellpadding="0" cellspacing="0" width="100%">\n<tr v',
'firstColumn': 1,
'hiliteLength': 63,
'hiliteStart': 10,
'lastColumn': 63,
'lastLine': 1369,
'message': 'The “width” attribute on the “table” element is obsolete. Use CSS instead.',
'type': 'error'},
{'extract': 'аз... -->\n<table border="0" cellpadding="0" cellspacing="0" width="100%">\n<tr v',
'firstColumn': 1,
'hiliteLength': 63,
'hiliteStart': 10,
'lastColumn': 63,
'lastLine': 1369,
'message': 'The “border” attribute on the “table” element is obsolete. Use CSS instead.',
'type': 'error'}

内容太多,无法全部发布。

关于python - 请求库和 validator.w3.org/nu,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37326337/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com