Skip to content

Latest commit

 

History

History
30 lines (28 loc) · 893 Bytes

README.md

File metadata and controls

30 lines (28 loc) · 893 Bytes

About

This is a simple script to scrape data from the official ecommerce website of Datablitz, a one stop shop for games and multimedia here in the Philippines, dump it into json format and put it in a simple Flask API. This is written in Python using the following libraries:

  • beautifulSoup4 == 4.12.0
  • Flask == 2.2.3
  • numpy == 1.24.2
  • pandas == 1.5.3
  • requests == 2.28.2
  • tqdm == 4.65.0

Dataset

The data that I've extracted at the moment contains five features:

{
"product_name": "NSW POKEMON LEGENDS ARCEUS (MDE)",
"price": 2459,
"availability": "In stock",
"region": "MDE",
"product_category": "Game"
}

Updates

  • 2023-03-24 | Initial commit is scraping only data on Nintendo Switch related items. More platforms will be added soon.
  • 2023-03-25 | Added two new features: region and product_category:
{
"region": "MDE",
"product_category": "Game"
}