Если вы go дальше, вы найдете реальные данные здесь: https://euraxess.ec.europa.eu/sites/default/files/exports/msca.xml Вот пример использования SimplifiedDo c.
from simplified_scrapy.request import req
from simplified_scrapy.simplified_doc import SimplifiedDoc
html = req.get('https://euraxess.ec.europa.eu/sites/default/files/exports/msca.xml')
doc = SimplifiedDoc(html)
jobs = doc.selects('job-opportunity')
for job in jobs:
print (job.select('job-id>text()'),job.select('job-title>text()'))
Результат:
367020 Early-Stage Researcher (ESR) 3-year PhD position - "Efficient intra-cavity and extra-cavity generation of beams with radial and azimuthal polarization in high-power thin-disk lasers" - Project: GREAT
377512 8 Short-term Early Stage Researcher positions available through the EvoCELL ITN (single cell genomics, evo-devo and science outreach)
383978 ESR (early stage researcher) for intelligent quality control cycles in Industry 4.0 process chains enabled by machine learning
......