├── .DS_Store ├── readme.md ├── requirements.txt └── scripts ├── .gitignore ├── Old_scripts ├── files │ ├── Disney Stock.csv │ ├── Facebook Stock.csv │ ├── Netflix stock.csv │ ├── Tesla Stock.csv │ ├── Uber Stock.csv │ └── geckodriver.log ├── paa-q&A.py ├── paa.py └── readme.md ├── netflix.csv └── paa.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundios/people-also-ask/HEAD/.DS_Store -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundios/people-also-ask/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | selenium==3.141.0 -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /scripts/Old_scripts/files/Disney Stock.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundios/people-also-ask/HEAD/scripts/Old_scripts/files/Disney Stock.csv -------------------------------------------------------------------------------- /scripts/Old_scripts/files/Facebook Stock.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundios/people-also-ask/HEAD/scripts/Old_scripts/files/Facebook Stock.csv -------------------------------------------------------------------------------- /scripts/Old_scripts/files/Netflix stock.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundios/people-also-ask/HEAD/scripts/Old_scripts/files/Netflix stock.csv -------------------------------------------------------------------------------- /scripts/Old_scripts/files/Tesla Stock.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundios/people-also-ask/HEAD/scripts/Old_scripts/files/Tesla Stock.csv -------------------------------------------------------------------------------- /scripts/Old_scripts/files/Uber Stock.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundios/people-also-ask/HEAD/scripts/Old_scripts/files/Uber Stock.csv -------------------------------------------------------------------------------- /scripts/Old_scripts/files/geckodriver.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundios/people-also-ask/HEAD/scripts/Old_scripts/files/geckodriver.log -------------------------------------------------------------------------------- /scripts/Old_scripts/paa-q&A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundios/people-also-ask/HEAD/scripts/Old_scripts/paa-q&A.py -------------------------------------------------------------------------------- /scripts/Old_scripts/paa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundios/people-also-ask/HEAD/scripts/Old_scripts/paa.py -------------------------------------------------------------------------------- /scripts/Old_scripts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundios/people-also-ask/HEAD/scripts/Old_scripts/readme.md -------------------------------------------------------------------------------- /scripts/netflix.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundios/people-also-ask/HEAD/scripts/netflix.csv -------------------------------------------------------------------------------- /scripts/paa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundios/people-also-ask/HEAD/scripts/paa.py --------------------------------------------------------------------------------