Skip to content

You can parse user-score, critic-score, and other information using this API.

Notifications You must be signed in to change notification settings

JaeguKim/Metacritic-Python-API

This branch is 9 commits ahead of rush4ratio/scraper:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

eb914ed · Aug 11, 2020

History

17 Commits
Jun 6, 2013
Jul 12, 2020
Aug 11, 2020
Jul 12, 2020
Feb 15, 2014
Feb 15, 2014
Jul 12, 2020
Feb 15, 2014
Oct 13, 2013
Jun 29, 2013
Jun 28, 2013

Repository files navigation

Metacritic Python API

You can parse user-score, critic-score, and other information from html of metacritic.com using this codes.

Usage

How To Use

Import

from MetaCriticScraper import MetaCriticScraper

Example

  • Code
urlForHorizonZeroDawn = 'https://www.metacritic.com/game/pc/horizon-zero-dawn-complete-edition?ref=hp'
scraper = MetaCriticScraper(urlForHorizonZeroDawn)
print("URL: " + scraper.game['url'])
print("Image: " + scraper.game['image'])
print("Title: " + scraper.game['title'])
print("Description: " + scraper.game['description'])
print("Platform: " + scraper.game['platform'])
print("Publisher: " + scraper.game['publisher'])
print("Release Date: " + scraper.game['release_date'])
print("Critic Score: " + scraper.game['critic_score'] + "/" + scraper.game['critic_outof'] + " (" + scraper.game['critic_count'] + " critics)")
print("User Score: " + scraper.game['user_score'] + " (" + scraper.game['user_count'] + " users)")
print("Developer: " + scraper.game['developer'])
print("Genre: " + scraper.game['genre'])
print("Rating: " + scraper.game['rating'])
print("Time to scrape: ", round(elapsed_time, 2), "secs")
  • Result
URL: https://www.metacritic.com/game/pc/horizon-zero-dawn-complete-edition?ref=hp  
Image: https://static.metacritic.com/images/products/games/8/5410c3d455b9c0341ef7a3023f0e29e4-98.jpg  
Title: Horizon Zero Dawn: Complete Edition  
Description: Experience Aloy’s legendary quest to unravel the mysteries of a future Earth ruled by Machines. An outcast from her tribe, the young hunter fights to uncover her past, discover her destiny… and stop a catastrophic threat to the future. Use devastating tactical attacks against your prey and explore a majestic open world in this action RPG.  
Platform: PC  
Publisher: PlayStation Mobile Inc.  
Release Date: Aug  7, 2020  
Critic Score: 85/ (41 critics)  
User Score: 4.9 (192 users)  
Developer: Guerrilla  
Genre: Role-Playing  
Rating: T  

About

You can parse user-score, critic-score, and other information using this API.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 98.3%
  • Python 1.7%