Recent content by alifihri

  1. A

    How to extract linkedin companies URL from linkedin search using python

    I'm trying to scrap company's profile URL from a LinkedIn search but I got "not found". Every things worked well in my code here it is: import requests import csv import time import numpy from bs4 import BeautifulSoup from time import sleep from selenium import webdriver import pandas as pd...
  2. A

    How can I extract number of LinkedIn search results

    Hi please I need help extracting the number of results for each keyword in .txt file. For example, my keyword is "buy cars", the element I want from the search is "172 results": Now let's say I have 100 keywords in a .txt file and want to extract the number of results for each how can I achieve...
  3. A

    Need help extract table from website

    Please need help extract HTML table for each keyword searched and save them in a CSV file. The code I used is: import requests import random import csv import time import numpy from bs4 import BeautifulSoup from time import sleep # Read the keywords from a file with open("keywords.txt", "r")...
  4. A

    help regarding google scraping

    Are there any free proxies to use, and how to integrate them into the code?
  5. A

    help regarding google scraping

    Thanks, I got it and it works, but after searching for 50 keywords almost it shows NOT FOUND in the results, is it limited?
  6. A

    help regarding google scraping

    Thanks, is there any ways to integrate this with excel or google sheets?
  7. A

    help regarding google scraping

    Hi please I need help regarding scraping google results exactly getting the number of search results for each keyword in excel or google sheets. here is an example, what I want is the number of each keyword (football, beauty, cinema) Is there any methods? Thanks in advance,
Back
Top