Вам понадобится получить доступ:
['hits']['hits'][x]['_source']['apply_url']
Где x - количество элементов / узлов в hits
.См. https://jsoneditoronline.org/?id=3757afd4ef634f99ae7264372eaf0ff4
Как видите, под хитами 10 предметов или узлов -> попаданий.apply_url
ниже _source
для каждого элемента.
def parse(self, response):
jsonresponse = json.loads(response.body_as_unicode())
print("============================================================================================================================")
for x, node in enumerate(jsonresponse):
print(jsonresponse['hits']['hits'][x]['_source']['apply_url'])
Например, print(jsonresponse['hits']['hits'][0]['_source']['apply_url'])
даст:
https://boards.greenhouse.io/mesosphere/jobs/1422922?gh_jid=1422922