Learn practical skills, build real-world projects, and advance your career

Scraping TOP CRYPTO Info on coingecko

Imgur

Web Scraping

Web Scraping is the process of collecting structured web data in an automated fashion. In general web data extraction or web scraping is used by people and business who want to make use of the vast amount of publicly available web data to make better decisions.

About Cryptocurrency

A cryptocurrency is a digital or virtual currency, that is secured by cryptography, which makes it nearly impossible to counterfeit or double-spend. Many cryptocurrencies are decentralized network based on blockchain technology - a distributed ledger enforced by a disparate network of computers.

coingecko

Coingeco is a website that contains information about all crypto currencies.It helps the user to understand live price, volumes and so many other things related to cryptocurrencies.

Project Outline

This project will use several Python libraries to scrape data from coingecko website. We will use the Python libraries like requests and Beautiful Soup to scrape data from the pages, then save our data in a CSV file.

  1. Download the webpage using requests
  2. Inspect the HTML in the Browser
  3. Parse the webpage's HTML code using Beautiful Soup
  4. Extract the information we want from the code
  5. Use Python lists and dictionaries to organize the extracted information
  6. Extract and combine data from multiple pages
  7. Save the extracted information to a CSV file
  8. Conclusion