New to webscraping. I'm trying to scrape (if possible) this website https://www.memberleap.com/members/directory/search_csam.php for the company titles listed (and maybe the descriptions). With the code I've written below, it returns empty brackets. Using soup.find the responses is 'None'
import requests
from bs4 import BeautifulSoup
import pandas as pd
url = 'https://www.memberleap.com/members/directory/search_csam.php'
requests.get(url)
page = requests.get(url)
soup = BeautifulSoup(page.text, 'lxml')
# uncomment to view html info
#print(soup)
name_plate = soup.find_all('div', class_ = 'name-plate')
print(name_plate)
I want to obtain the name of the companies listed beyond the name-plate index. In this cases, it's ADG Creative and Corporate Office Properties Trust. Is it possible to do this, given the href changes between each company name?