0

I am trying to scrape a website currently I have this but it's scraping in Html but I need Javascript

import requests
import urllib.request
import time
from bs4 import BeautifulSoup
url = 'website'
response = requests.get(url)
soup = BeautifulSoup(response.text, "html.parse")
soup.findAll('a')
print(soup)
apple
  • 11
  • 1

0 Answers0