Abuse Melding

Je hebt een klacht over de onderstaande posting:

17-09-2020, 23:54 door planetenpiet

De taak van web scraping is begrijpen hoe de structuur van het web werkt. Welke tools zijn er nog meer voorhanden dan Beautiful Soup? Hieronder een fragment van hoe het werkt, maar iemand een idee welke tools voorhanden zijn die beter zijn in de opsporing van content? (in dit geval is het webscraping voor een security project) pip install BeautifulSoup4 from bs4 import BeautifulSoup as bso our_soup = bso(sample_content, "lxml") findChild(): The findChild method is used to find the first child node of HTML elements. For example when we take a look at our “ol” or “ul” tags, we would find two children tags in it. However when we use the findChild method, it only returns the first node as the child node. Voorbeeld van pagina: first_child = our_soup.find("body").find("ol") print(first_child.findChild()) <li>Number One</li> En dan kun je verder: 'Number One' findChildren(): Via first_child = our_soup.find("body").find("ol"); print(first_child.findChildren()) In principe tot dat je je ...

Beschrijf je klacht (Optioneel):

captcha