File size: 8,289 Bytes
c1e95bc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 | ---
license: cc-by-4.0
language:
- en
tags:
- games
- steam
- video games
- gamedev
- game development
task_categories:
- text-generation
- tabular-classification
- tabular-regression
- feature-extraction
- zero-shot-classification
- text-retrieval
- text-ranking
- summarization
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
pretty_name: Steam Games Dataset
size_categories:
- 10K<n<100K
dataset_info:
features:
- name: appID
dtype: string
- name: name
dtype: string
- name: release_date
dtype: string
- name: estimated_owners
dtype: string
- name: peak_ccu
dtype: int64
- name: required_age
dtype: int64
- name: price
dtype: float64
- name: dlc_count
dtype: int64
- name: detailed_description
dtype: string
- name: short_description
dtype: string
- name: supported_languages
list: string
- name: full_audio_languages
list: string
- name: reviews
dtype: string
- name: header_image
dtype: string
- name: website
dtype: string
- name: support_url
dtype: string
- name: support_email
dtype: string
- name: windows
dtype: bool
- name: mac
dtype: bool
- name: linux
dtype: bool
- name: metacritic_score
dtype: int64
- name: metacritic_url
dtype: string
- name: user_score
dtype: int64
- name: positive
dtype: int64
- name: negative
dtype: int64
- name: score_rank
dtype: string
- name: achievements
dtype: int64
- name: recommendations
dtype: int64
- name: notes
dtype: string
- name: average_playtime_forever
dtype: int64
- name: average_playtime_2weeks
dtype: int64
- name: median_playtime_forever
dtype: int64
- name: median_playtime_2weeks
dtype: int64
- name: developers
list: string
- name: publishers
list: string
- name: categories
list: string
- name: genres
list: string
- name: tags
list: 'null'
- name: screenshots
list: string
- name: movies
list: 'null'
- name: packages
dtype: string
splits:
- name: train
num_bytes: 437231654
num_examples: 122876
download_size: 189738107
dataset_size: 437231654
---
<p align="center"><img src="images/banner.png"/></p>
# Overview
Information of **more than 120,000 games** published on Steam. Maintained by **[Fronkon Games](https://github.com/FronkonGames)**.
This dataset has been created with **[this code (MIT)](https://github.com/FronkonGames/Steam-Games-Scraper)** and use the API provided by _Steam_, the largest gaming platform on PC. Data is also collected from _Steam Spy_.
Only published games, _no DLCs, episodes, music, videos, etc_.
Here is a simple example of how to parse json information:
```
# Simple parse of the 'games.json' file.
import os
import json
dataset = {}
if os.path.exists('games.json'):
with open('games.json', 'r', encoding='utf-8') as fin:
text = fin.read()
if len(text) > 0:
dataset = json.loads(text)
for app in dataset:
appID = app # AppID, unique identifier for each app (string).
game = dataset[app]
name = game['name'] # Game name (string).
releaseDate = game['release_date'] # Release date (string).
estimatedOwners = game['estimated_owners'] # Estimated owners (string, e.g.: "0 - 20000").
peakCCU = game['peak_ccu'] # Number of concurrent users, yesterday (int).
required_age = game['required_age'] # Age required to play, 0 if it is for all audiences (int).
price = game['price'] # Price in USD, 0.0 if its free (float).
dlcCount = game['dlc_count'] # Number of DLCs, 0 if you have none (int).
longDesc = game['detailed_description'] # Detailed description of the game (string).
shortDesc = game['short_description'] # Brief description of the game,
# does not contain HTML tags (string).
languages = game['supported_languages'] # Comma-separated enumeration of supporting languages.
fullAudioLanguages = game['full_audio_languages'] # Comma-separated enumeration of languages with audio support.
reviews = game['reviews'] #
headerImage = game['header_image'] # Header image URL in the store (string).
website = game['website'] # Game website (string).
supportWeb = game['support_url'] # Game support URL (string).
supportEmail = game['support_email'] # Game support email (string).
supportWindows = game['windows'] # Does it support Windows? (bool).
supportMac = game['mac'] # Does it support Mac? (bool).
supportLinux = game['linux'] # Does it support Linux? (bool).
metacriticScore = game['metacritic_score'] # Metacritic score, 0 if it has none (int).
metacriticURL = game['metacritic_url'] # Metacritic review URL (string).
userScore = game['user_score'] # Users score, 0 if it has none (int).
positive = game['positive'] # Positive votes (int).
negative = game['negative'] # Negative votes (int).
scoreRank = game['score_rank'] # Score rank of the game based on user reviews (string).
achievements = game['achievements'] # Number of achievements, 0 if it has none (int).
recommens = game['recommendations'] # User recommendations, 0 if it has none (int).
notes = game['notes'] # Extra information about the game content (string).
averagePlaytime = game['average_playtime_forever'] # Average playtime since March 2009, in minutes (int).
averageplaytime2W = game['average_playtime_2weeks'] # Average playtime in the last two weeks, in minutes (int).
medianPlaytime = game['median_playtime_forever'] # Median playtime since March 2009, in minutes (int).
medianPlaytime2W = game['median_playtime_2weeks'] # Median playtime in the last two weeks, in minutes (int).
packages = game['packages'] # Available packages.
for pack in packages:
title = pack['title'] # Package title (string).
packDesc = pack['description'] # Package description (string).
subs = pack['subs'] # Subpackages.
for sub in subs:
text = sub['text'] # Subpackage title (string).
subDesc = sub['description'] # Subpackage description (string).
subPrice = sub['price'] # Subpackage price in USD (float).
developers = game['developers'] # Game developers.
for developer in developers:
developerName = developer # Developer name (string).
publishers = game['publishers'] # Game publishers.
for publisher in publishers:
publisherName = publisher # Publisher name (string).
categories = game['categories'] # Game categories.
for category in categories:
categoryName = category # Category name (string).
genres = game['genres'] # Game genres.
for gender in genres:
genderName = gender # Gender name (string).
screenshots = game['scrennshots'] # Game screenshots.
for screenshot in screenshots:
scrennshotsURL = screenshot # Game screenshot URL (string).
movies = game['movies'] # Game movies.
for movie in movies:
movieURL = movie # Game movie URL (string).
tags = game['tags'] # Tags.
for tag in tags:
tagKey = tag # Tag key (string, int).
```
|