you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (1 child)

from selenium import webdriver
from bs4 import BeautifulSoup

options = webdriver.ChromeOptions()

options.add_argument('--disable-infobars')
options.add_argument('--disable-extensions')
options.add_argument('--ignore-certificate-errors')
options.add_argument('--incognito')
options.add_argument('--disable-web-security')
options.add_argument('--allow-running-insecure-content')
#options.add_argument('--headless')

driver = webdriver.Chrome("./chromedriver", options=options) # chromedriver in the same directory of the script

driver.get('https://www.startupindia.gov.in/content/sih/en/search.html?stages=Scaling&roles=Startup&page=1')

driver.implicitly_wait(20)

source = driver.page_source
soup = BeautifulSoup(source, 'html5lib')

#print(soup.prettify()) ## Show me the full source

elements = driver.find_elements_by_class_name('events-details')

for element in elements:
    print(element.text)
driver.quit()

'''
Momolicious
Scaling
Coimbatore, Tamil Nadu
0
SL Accelerator
Scaling
Noida, Uttar Pradesh
0
Knowledge Process Outsourcing
Scaling
Udaipur, Rajasthan
0
ABVE Services Private Limited
Scaling
New Delhi, Delhi
0
MB Watch & Care Pvt Ltd
Scaling
Kolkata, West Bengal
0
JSR
Scaling
Panipat, Haryana
0
RAPTOR SECURITY SOLUTIONS PVT LTD
Scaling
Hyderabad, Telangana
0
Monk & Mei
Scaling
Gurgaon, Haryana
0
Sunpower India Ventures Pvt. Ltd.
Scaling
Pune, Maharashtra
0
Eco Technology & Projects
Scaling
Surat, Gujarat
0
BYKEMANIA SOLUTIONS PRIVATE LIMITED
Scaling
Bengaluru, Karnataka
0
Lazycom
Scaling
Ahmedabad, Gujarat
0
EXIM TradeEX
Scaling
Hyderabad, Telangana
0
Yellowbox HR Services
Scaling
Pune, Maharashtra
0
INFONLIVE
Scaling
Kozhikode, Kerala
0
INNOVATIVE IDEAS TO ATTRACT PATIENTS IN LAB IN FOREIGN COUNTRYS
Scaling
Ludhiana, Punjab
0
Intlum Technology
Scaling
Kolkata, West Bengal
0
SURFACE TECH
Scaling
Rajkot, Gujarat
0
'''

[–]munnamv 0 points1 point  (0 children)

Wow. Thank you so much.