Report this

What is the reason for this report?

how to extract the anglelist data using python

Posted on November 9, 2017

from selenium import webdriver from bs4 import BeautifulSoup

link = ‘https://angel.co/companies?locations[]=393668-New+Delhi,+IN

driver = webdriver.Chrome() for url in [link.format(i) for i in range(1,6)]: driver.get(url) soup = BeautifulSoup(driver.page_source, ‘html.parser’) for items in soup.select(‘.name’): print(name) driver.quit

I run the following command but it returns nothing



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.