Python Forum
Web Scraping Error : Not getting expected result
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Web Scraping Error : Not getting expected result
#3
This code will show what's available the group you're interested in (prints out all tr's and td's)
All you have to do is select the elements that you want, and then extract that data.
from bs4 import BeautifulSoup
import requests
import pandas as pd
import sys

def scrape_page():
    url = 'https://www.programmableweb.com/apis/directory'
    
    api_dict = {}
    api_no = 0
    # while True:
    response = requests.get(url)
    if response.status_code == 200:
        data = response.text
    else:
        print(f"Unable to fetch page, bad status: {response.status_code}")
        sys.exit(-1)
    soup = BeautifulSoup(data, 'html.parser')
    tbody = soup.select('.views-table > tbody:nth-child(2)')[0]
    trs = tbody.find_all('tr')
    for n, tr in enumerate(trs):
        tds = tr.find_all('td')
        for n1, td in enumerate(tds):
            print(f"\n--------------------- tr_{n}, td_{n1} ---------------------")
            print(td)    
Reply


Messages In This Thread
RE: Web Scraping Error : Not getting expected result - by Larz60+ - Oct-08-2019, 03:52 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  I am scraping a web page but got an Error Sarmad54 3 1,608 Mar-02-2023, 08:20 PM
Last Post: Sarmad54
  error in code web scraping alexisbrunaux 5 3,985 Aug-19-2020, 02:31 AM
Last Post: alexisbrunaux
  error zomato scraping data syxzetenz 3 3,503 Jun-23-2020, 08:53 PM
Last Post: Gribouillis
  Web scraping error jithin123 0 2,540 Mar-22-2020, 08:13 PM
Last Post: jithin123
  Scraping data saving to DB error with Cursor cubangt 3 2,904 May-20-2019, 08:30 PM
Last Post: Yoriz
  Python Scraping Error ZenWoR 1 2,320 Sep-15-2018, 08:23 PM
Last Post: snippsat
  Error while scraping item price from online store mgtheboss 2 5,332 Jan-12-2018, 06:42 PM
Last Post: snippsat
  Error while scraping links with beautiful soup mgtheboss 4 8,661 Dec-22-2017, 12:41 PM
Last Post: mgtheboss

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020