Simple demonstration of what I can do with python libraries beautiful soup and Pandas. I used beautiful soup to web scrape quotes and author’s name from a website called "Quotes to Scrape". Then I made it so the user can chose to take all the data that been collected to store it in a text file, excel sheet, JSON file, or display data in the console.
- Requests: Fetches data from websites.
pip install requests- BeautifulSoup (bs4): Extracts data from HTML/XML documents.
pip install requests- Pandas: Used for data manipulation, analysis, and for storing data.
pip install pandas- Openpyxl: Used for
.xlsxfiles.
pip install openpyxlPrints quotes and author's name in the console.
Prints quotes and author's name in a .xlsx file.
)
Prints quotes and author's name in a .json file.


)
)
)
)
)
)