This page aims to serve as a portfolio for projects made by me. These projects serve as evidence of my expertise in the areas I work in.
This project consists of a Python script capable of scraping data from a list of links using the BeautifulSoup library.
The chosen website to be scraped was the following -> Pokemon go wiki - fandom
- Firstly, a function named link_scraper scans the website and retrieves the list of links associated with each Pokémon;
- This list of links serves as an input parameter for the function named info_scraper;
- Within the info_scraper function, all available information about each Pokémon is scraped from the respective links;
- Finally, the function save_json saves the scraped data as a JSON file.