запросы python не могут декодировать ответ API utf-8 - PullRequest
0 голосов
/ 20 декабря 2018

Я пытаюсь получить ответ JSON от следующей конечной точки API https://datos.madrid.es/egob/catalogo/205026-0-cementerios.json.Мой код:

import requests

url = 'https://datos.madrid.es/egob/catalogo/205026-0-cementerios.json'
r = requests.get(url)
r.json()

Сбой с ошибкой:

json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)

Если я получаю кодировку из запроса, он пуст.Поэтому я попытался принудительно закодировать код перед тем, как получить к нему доступ, но безуспешно:

import requests

url = 'https://datos.madrid.es/egob/catalogo/205026-0-cementerios.json'
r = requests.get(url)
r.encoding = 'utf-8'
r.json()

выдает ту же ошибку.

r.text

возвращает что-то вроде:

'\x00\x00\x01\x00\x01\x00  \x00\x00\x01\x00\x18\x0 .......

выглядит так, что он не декодирует должным образом ответ.

Как я могу успешно декодировать его?

Ответы [ 2 ]

0 голосов
/ 20 декабря 2018

Сервер делает что-то необычное с заголовком пользовательского агента (а именно возвращает значок, если он не распознан!).Вы можете обойти это, принудив пользовательский агент:

url = 'https://datos.madrid.es/egob/catalogo/205026-0-cementerios.json'
r = requests.get(url, headers={"User-Agent": "curl/7.61.0"})
print(r.json())
0 голосов
/ 20 декабря 2018

Похоже на молнию.Распакуйте его и используйте json.decode.Кодировка: utf-8.

Пример:

import zlib
decompressed_data=zlib.decompress(f.read(), 16+zlib.MAX_WBITS)

Ваш URL общедоступен, вы можете проверить его в своем любимом браузере.Chrome дает следующие заголовки:

Cache-Control: no-cache
Connection: Keep-Alive
Content-disposition: inline;filename=205026-0-cementerios.json
Content-Encoding: gzip
Content-Length: 4383
Content-Type: application/json;charset=UTF-8
Date: Thu, 20 Dec 2018 12:19:33 GMT
OT-force-Account-Verify: true
Vary: Accept-Encoding
X-Frame-Options: SAMEORIGIN
X-UA-Compatible: IE=8
Xonnection: close

И после разархивирования выглядит хорошо json:

{
"@context": {
    "c": "http://www.w3.org/2002/12/cal#",
    "dcterms": "http://purl.org/dc/terms/",
    "geo": "http://www.w3.org/2003/01/geo/wgs84_pos#",
    "loc": "http://purl.org/ctic/infraestructuras/localizacion#",
    "org": "http://purl.org/ctic/infraestructuras/organizacion#",
    "vcard": "http://www.w3.org/2006/vcard/ns#",
    "title": "vcard:fn",
    "id": "dcterms:identifier",
    "relation": "dcterms:relation",
    "references": "dcterms:references",
    "address": "vcard:adr",
    "area": "loc:barrio",
    "district": "loc:distrito",
    "locality": "vcard:locality",
    "postal-code": "vcard:postal-code",
    "street": "vcard:street-address",
    "location": "vcard:geo",
    "latitude": "geo:lat",
    "longitude": "geo:long",
....
...