Answer the question
In order to leave comments, you need to log in
Is there a chrome extension that makes PyQuery parsing easier?
I am mastering such a thing in python as PyQuery for parsing sites, python is more or less familiar to me, but I am weak in web programming, I don’t know how to extract information from some sites when parsing.
Here, for example, parse news from Yandex:
from pyquery import PyQuery
import os
pc = PyQuery(url="https://yandex.ru/")
for i in pc.items('.home-link.list__item-content'):
print (i.attr('aria-label'))
os.system("pause")
Answer the question
In order to leave comments, you need to log in
In the browser devtools, select the desired element and copy its selector through the right click.
What you need is the developer console. You just don't know how to use it
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question