npm install
pip install selenium
npm run start
python getLinks.py
- Get the profile url like https://www.quora.com/profile/{profile_url} of the desired account you want to scrape.
- Run the python script and wait to reach the end of the answers tab , make sure to have chromedriver in your root directory.
const allLinks = document.getElementsByTagName('a');
const mydata = [...allLinks];
- Copy all the 'a' tags from the console and paste it in the quora_links.csv.
- Run npm-start to scrape all questions and answers in a csv file format.
Give a ⭐️ if this project helped you!