Web Scraping in Python
Thomas Laetsch
Data Scientist, NYU
xpath = '/html/body/div[2]'
XPath semplice:
/ avanza di una generazione.
xpath = '/html/body/div[2]'
table nell’intero HTML:xpath = '//table'
table discendenti del 2º div figlio di body:xpath = '/html/body/div[2]//table`
Web Scraping in Python