🔥Learn Web Scraping with Python - A Complete Step-By-Step Guide 🔥

Поделиться
HTML-код
  • Опубликовано: 5 ноя 2024

Комментарии • 5

  • @saimaahmed6679
    @saimaahmed6679 2 месяца назад

    🎉

  • @tinytotsup
    @tinytotsup 2 месяца назад

    ❤🎉🎉

  • @MuhammadAkram-f8f
    @MuhammadAkram-f8f 2 месяца назад

    👍

  • @taxzanUSA
    @taxzanUSA Месяц назад

    I want to scrape multiple tables from a website search query into Excel. where do i begin?

    • @protorialsbysaif
      @protorialsbysaif  Месяц назад

      use soup.findAll('table') and enumerate on the table list. Convert the tables to dataframe using pd.read_html(str(table))[0]. Then save the dataframe as csv file.