Python Client wrapper for Steam API
Project description
Get Started
Installation
pip install python-steam-api
Pip install requirements
pip install beautifulsoup4
Create Steam API web key
Follow instructions to get API Key
Create .env file
From root of your project
touch .env
echo "STEAM_API_KEY=<YOUR_STEAM_API KEY>" >> .env
Basic Usage
Searching for a user
from steam import Steam
from decouple import config
KEY = config("STEAM_API_KEY")
steam = Steam(KEY)
steam.users.search_user("the12thchairman")
Response
{
"player": {
"steamid": "76561198995017863",
"communityvisibilitystate": 3,
"profilestate": 1,
"personaname": "The12thChairman",
"profileurl": "https://steamcommunity.com/id/the12thchairman/",
"avatar": "https://avatars.akamai.steamstatic.com/427ef7d5f8ad7b21678f69bc8afc95786cf38fe6.jpg",
"avatarmedium": "https://avatars.akamai.steamstatic.com/427ef7d5f8ad7b21678f69bc8afc95786cf38fe6_medium.jpg",
"avatarfull": "https://avatars.akamai.steamstatic.com/427ef7d5f8ad7b21678f69bc8afc95786cf38fe6_full.jpg",
"avatarhash": "427ef7d5f8ad7b21678f69bc8afc95786cf38fe6",
"lastlogoff": 1659923870,
"personastate": 1,
"primaryclanid": "103582791429521408",
"timecreated": 1570311509,
"personastateflags": 0,
"loccountrycode": "US"
}
}
Getting User details by steam id
from steam import Steam
from decouple import config
KEY = config("STEAM_API_KEY")
steam = Steam(KEY)
# arguments: steamid
user = steam.users.get_user_details("76561198995017863")
Response
{
"player": {
"steamid": "76561198995017863",
"communityvisibilitystate": 3,
"profilestate": 1,
"personaname": "The12thChairman",
"profileurl": "https://steamcommunity.com/id/the12thchairman/",
"avatar": "https://avatars.akamai.steamstatic.com/427ef7d5f8ad7b21678f69bc8afc95786cf38fe6.jpg",
"avatarmedium": "https://avatars.akamai.steamstatic.com/427ef7d5f8ad7b21678f69bc8afc95786cf38fe6_medium.jpg",
"avatarfull": "https://avatars.akamai.steamstatic.com/427ef7d5f8ad7b21678f69bc8afc95786cf38fe6_full.jpg",
"avatarhash": "427ef7d5f8ad7b21678f69bc8afc95786cf38fe6",
"lastlogoff": 1659923870,
"personastate": 1,
"primaryclanid": "103582791429521408",
"timecreated": 1570311509,
"personastateflags": 0,
"loccountrycode": "US"
}
}
Getting Friends List
from steam import Steam
from decouple import config
KEY = config("STEAM_API_KEY")
steam = Steam(KEY)
# arguments: steamid
user = steam.users.get_user_friends_list("76561198995017863")
Response
{
"friends": [
{
"steamid": "76561198164668273",
"communityvisibilitystate": 3,
"profilestate": 1,
"personaname": "ProToType",
"profileurl": "https://steamcommunity.com/id/bruuitssam/",
"avatar": "https://avatars.akamai.steamstatic.com/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb.jpg",
"avatarmedium": "https://avatars.akamai.steamstatic.com/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_medium.jpg",
"avatarfull": "https://avatars.akamai.steamstatic.com/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_full.jpg",
"avatarhash": "fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb",
"lastlogoff": 1659791200,
"personastate": 3,
"realname": "Samuel chance",
"primaryclanid": "103582791429521408",
"timecreated": 1416698360,
"personastateflags": 0,
"loccountrycode": "US",
"relationship": "friend",
"friend_since": 1634692088
},
{
"steamid": "76561198040366189",
"communityvisibilitystate": 3,
"profilestate": 1,
"personaname": "\u2654 Regular Tetragon",
"commentpermission": 1,
"profileurl": "https://steamcommunity.com/id/regulartetragon/",
"avatar": "https://avatars.akamai.steamstatic.com/85ee384bec86399cc79728cbde046516fa704b23.jpg",
"avatarmedium": "https://avatars.akamai.steamstatic.com/85ee384bec86399cc79728cbde046516fa704b23_medium.jpg",
"avatarfull": "https://avatars.akamai.steamstatic.com/85ee384bec86399cc79728cbde046516fa704b23_full.jpg",
"avatarhash": "85ee384bec86399cc79728cbde046516fa704b23",
"lastlogoff": 1659834670,
"personastate": 0,
"realname": "Vincent Mattingly",
"primaryclanid": "103582791435763797",
"timecreated": 1302294837,
"personastateflags": 0,
"relationship": "friend",
"friend_since": 1649989273
},
{
"steamid": "76561198030124562",
"communityvisibilitystate": 3,
"profilestate": 1,
"personaname": "Robz",
"profileurl": "https://steamcommunity.com/profiles/76561198030124562/",
"avatar": "https://avatars.akamai.steamstatic.com/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb.jpg",
"avatarmedium": "https://avatars.akamai.steamstatic.com/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_medium.jpg",
"avatarfull": "https://avatars.akamai.steamstatic.com/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_full.jpg",
"avatarhash": "fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb",
"lastlogoff": 1659320144,
"personastate": 1,
"primaryclanid": "103582791429521408",
"timecreated": 1283739538,
"personastateflags": 0,
"relationship": "friend",
"friend_since": 1634692171
}
]
}
Getting Users Recently Played Games
from steam import Steam
from decouple import config
KEY = config("STEAM_API_KEY")
steam = Steam(KEY)
# arguments: steamid
user = steam.users.get_user_recently_played_games("76561198995017863")
Getting User Owned Games
from steam import Steam
from decouple import config
KEY = config("STEAM_API_KEY")
steam = Steam()
# arguments: steamid
user = steam.users.get_owned_games("76561198995017863")
Getting User Steam Level
from steam import Steam
from decouple import config
KEY = config("STEAM_API_KEY")
steam = Steam(KEY)
# arguments: steamid
user = steam.users.get_user_steam_level("76561198995017863")
Getting User Badges
from steam import Steam
from decouple import config
KEY = config("STEAM_API_KEY")
steam = Steam(KEY)
# arguments: steamid
user = steam.users.get_user_badges("76561198995017863")
Getting Community Badge Progress
from steam import Steam
from decouple import config
KEY = config("STEAM_API_KEY")
steam = Steam(KEY)
# arguments: steamid, badgeid
user = steam.users.get_community_badge_progress("<steam_id>", "<badge_id>")
Getting User Public Account
from steam import Steam
from decouple import config
KEY = config("STEAM_API_KEY")
steam = Steam(KEY)
# arguments: steamid
user = steam.users.get_account_public_info("<steam_id>")
Searching for Games
from steam import Steam
from decouple import config
KEY = config("STEAM_API_KEY")
steam = Steam(KEY)
# arguments: search
user = steam.apps.search_games("terr")
Response
{
"apps": [
{
"id": 105600,
"link": "https://store.steampowered.com/app/105600/Terraria/?snr=1_7_15__13",
"name": "Terraria",
"img": "https://cdn.akamai.steamstatic.com/steam/apps/105600/capsule_sm_120.jpg?t=1590092560",
"price": "$9.99"
},
{
"id": 1202130,
"link": "https://store.steampowered.com/app/1202130/Starship_Troopers_Terran_Command/?snr=1_7_15__13",
"name": "Starship Troopers: Terran Command",
"img": "https://cdn.akamai.steamstatic.com/steam/apps/1202130/capsule_sm_120.jpg?t=1657104501",
"price": "$29.99"
},
{
"id": 1176470,
"link": "https://store.steampowered.com/app/1176470/Terra_Invicta/?snr=1_7_15__13",
"name": "Terra Invicta",
"img": "https://cdn.akamai.steamstatic.com/steam/apps/1176470/capsule_sm_120.jpg?t=1659933796",
"price": ""
},
{
"id": 1945600,
"link": "https://store.steampowered.com/app/1945600/The_Riftbreaker_Metal_Terror/?snr=1_7_15__13",
"name": "The Riftbreaker: Metal Terror",
"img": "https://cdn.akamai.steamstatic.com/steam/apps/1945600/capsule_sm_120.jpg?t=1659109312",
"price": "$9.99"
},
{
"id": 285920,
"link": "https://store.steampowered.com/app/285920/TerraTech/?snr=1_7_15__13",
"name": "TerraTech",
"img": "https://cdn.akamai.steamstatic.com/steam/apps/285920/capsule_sm_120.jpg?t=1644900341",
"price": "$24.99"
}
]
}
App/Game details
Parameters:
-
app_id
(int): The unique App ID of the app you want to retrieve details for. For example, 105600 corresponds to "Terraria" -
country
(str): An optional parameter representing the ISO Country Code. The default value is "US." -
filters
(str): An optional parameter that allows you to specify a list of keys to return in the app details. If not provided, it defaults to "basic." The available filter options include: -
basic
(Default): Returns essential information like type, name, steam_appid, required_age, is_free, dlc, detailed_description, short_description, about_the_game, supported_languages, header_image, website, pc_requirements, mac_requirements, and linux_requirements. -
Optional filters (Specify one or more of these as a comma-separated string):
- controller_support
- dlc
- fullgame
- legal_notice
- developers
- demos
- price_overview
- metacritic
- categories
- genres
- screenshots
- movies
- recommendations
- achievements Response
from steam import Steam
from decouple import config
KEY = config("STEAM_API_KEY")
terraria_app_id = 105600
steam = Steam(KEY)
# arguments: app_id
user = steam.apps.get_app_details(terraria_app_id)
{
"105600": {
"success": true,
"data": {
"type": "game",
"name": "Terraria",
"steam_appid": 105600,
"required_age": 0,
"is_free": false,
"controller_support": "full",
"dlc": [
409210,
1323320
],
"detailed_description": "Dig, Fight, Explore, Build: The very world is at your fingertips as you fight for survival, fortune, and glory. Will you delve deep into cavernous expanses in search of treasure and raw materials with which to craft ever-evolving gear, machinery, and aesthetics? Perhaps you will choose instead to seek out ever-greater foes to test your mettle in combat? Maybe you will decide to construct your own city to house the host of mysterious allies you may encounter along your travels? <br><br>In the World of Terraria, the choice is yours!<br><br>Blending elements of classic action games with the freedom of sandbox-style creativity, Terraria is a unique gaming experience where both the journey and the destination are completely in the player’s control. The Terraria adventure is truly as unique as the players themselves! <br><br>Are you up for the monumental task of exploring, creating, and defending a world of your own? <br><br>\t\t\t\t\t\t\t<strong>Key features:</strong><br>\t\t\t\t\t\t\t<ul class=\"bb_ul\"><li>Sandbox Play<br>\t\t\t\t\t\t\t</li><li> Randomly generated worlds<br>\t\t\t\t\t\t\t</li><li>Free Content Updates<br>\t\t\t\t\t\t\t</li></ul>",
"about_the_game": "Dig, Fight, Explore, Build: The very world is at your fingertips as you fight for survival, fortune, and glory. Will you delve deep into cavernous expanses in search of treasure and raw materials with which to craft ever-evolving gear, machinery, and aesthetics? Perhaps you will choose instead to seek out ever-greater foes to test your mettle in combat? Maybe you will decide to construct your own city to house the host of mysterious allies you may encounter along your travels? <br><br>In the World of Terraria, the choice is yours!<br><br>Blending elements of classic action games with the freedom of sandbox-style creativity, Terraria is a unique gaming experience where both the journey and the destination are completely in the player’s control. The Terraria adventure is truly as unique as the players themselves! <br><br>Are you up for the monumental task of exploring, creating, and defending a world of your own? <br><br>\t\t\t\t\t\t\t<strong>Key features:</strong><br>\t\t\t\t\t\t\t<ul class=\"bb_ul\"><li>Sandbox Play<br>\t\t\t\t\t\t\t</li><li> Randomly generated worlds<br>\t\t\t\t\t\t\t</li><li>Free Content Updates<br>\t\t\t\t\t\t\t</li></ul>",
"short_description": "Dig, fight, explore, build! Nothing is impossible in this action-packed adventure game. Four Pack also available!",
"supported_languages": "English, French, Italian, German, Spanish - Spain, Polish, Portuguese - Brazil, Russian, Simplified Chinese",
"header_image": "https://cdn.akamai.steamstatic.com/steam/apps/105600/header.jpg?t=1666290860",
"capsule_image": "https://cdn.akamai.steamstatic.com/steam/apps/105600/capsule_231x87.jpg?t=1666290860",
"capsule_imagev5": "https://cdn.akamai.steamstatic.com/steam/apps/105600/capsule_184x69.jpg?t=1666290860",
"website": "http://www.terraria.org/",
"pc_requirements": {
"minimum": "<h2 class=\"bb_tag\"><strong>REQUIRED</strong></h2><ul class=\"bb_ul\"><li><strong>OS: Windows Xp, Vista, 7, 8/8.1, 10</strong> <br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Processor: 2.0 Ghz</strong> <br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Memory: 2.5GB</strong><br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Hard Disk Space: 200MB </strong> \t<br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Video Card: 128mb Video Memory, capable of Shader Model 2.0+</strong> <br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>DirectX®: 9.0c or Greater</strong> \t<br>\t\t\t\t\t\t\t\t\t</li></ul>",
"recommended": "<h2 class=\"bb_tag\"><strong>RECOMMENDED</strong></h2><ul class=\"bb_ul\"><li><strong>OS: Windows 7, 8/8.1, 10</strong> <br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Processor: Dual Core 3.0 Ghz</strong> <br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Memory: 4GB</strong><br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Hard Disk Space: 200MB </strong> \t<br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Video Card: 256mb Video Memory, capable of Shader Model 2.0+</strong> <br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>DirectX®: 9.0c or Greater</strong> \t<br>\t\t\t\t\t\t\t\t\t</li></ul>"
},
"mac_requirements": {
"minimum": "<h2 class=\"bb_tag\"><strong>REQUIRED</strong></h2><ul class=\"bb_ul\"><li><strong>OS: OSX 10.9.5 - 10.11.6</strong> <br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Processor: 2.0 Ghz</strong> <br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Memory: 2.5GB</strong><br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Hard Disk Space: 200MB </strong> \t<br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Video Card: 128mb Video Memory, capable of OpenGL 3.0+ support (2.1 with ARB extensions acceptable</strong> <br>\t\t\t\t\t\t\t\t\t</li></ul>",
"recommended": "<h2 class=\"bb_tag\"><strong>RECOMMENDED</strong></h2><ul class=\"bb_ul\"><li><strong>OS: OSX 10.9.5 - 10.11.6</strong> <br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Processor: Dual Core 3.0 Ghz</strong> <br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Memory: 4GB</strong><br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Hard Disk Space: 200MB </strong> \t<br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Video Card: 256mb Video Memory, capable of OpenGL 3.0+ support (2.1 with ARB extensions acceptable</strong> <br>\t\t\t\t\t\t\t\t\t</li></ul>"
},
"linux_requirements": {
"minimum": "<h2 class=\"bb_tag\"><strong>REQUIRED</strong></h2>LINUX<br><ul class=\"bb_ul\"><li><strong>OS: Ubuntu 14.04 LTS</strong> <br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Processor: 2.0 Ghz</strong> <br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Memory: 2.5GB</strong><br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Hard Disk Space: 200MB </strong> \t<br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Video Card: 128mb Video Memory, capable of OpenGL 3.0+ support (2.1 with ARB extensions acceptable</strong> <br>\t\t\t\t\t\t\t\t\t</li></ul>",
"recommended": "<h2 class=\"bb_tag\"><strong>RECOMMENDED</strong></h2>LINUX<br><ul class=\"bb_ul\"><li><strong>OS: Ubuntu 14.04 LTS</strong> <br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Processor: Dual Core 3.0 Ghz</strong> <br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Memory: 4GB</strong><br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Hard Disk Space: 200MB </strong> \t<br>\t\t\t\t\t\t\t\t\t\t</li><li><strong>Video Card: 256mb Video Memory, capable of OpenGL 3.0+ support (2.1 with ARB extensions acceptable</strong> <br>\t\t\t\t\t\t\t\t\t</li></ul>"
}
}
}
}
Getting user app stats
from steam import Steam
from decouple import config
KEY = config("STEAM_API_KEY")
steam = Steam(KEY)
# arguments: steam_id, app_id
user = steam.apps.get_user_stats("<steam_id>", "<app_id>")
Getting user app achievements
from steam import Steam
from decouple import config
KEY = config("STEAM_API_KEY")
steam = Steam(KEY)
# arguments: steam_id, app_id
user = steam.apps.get_user_achievements("<steam_id>", "<app_id>")
Getting user ban status
from steam import Steam
from decouple import config
KEY = config("STEAM_API_KEY")
steam = Steam(KEY)
# arguments: steam_id
user = steam.users.get_player_bans("<steam_id>")
{
"players":[
{
"SteamId":"76561198079362196",
"CommunityBanned":false,
"VACBanned":false,
"NumberOfVACBans":0,
"DaysSinceLastBan":0,
"NumberOfGameBans":0,
"EconomyBan":"none"
}
]
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file python-steam-api-1.2.0.tar.gz
.
File metadata
- Download URL: python-steam-api-1.2.0.tar.gz
- Upload date:
- Size: 12.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb177830c38db5dde9c6ed578a6fdc66f43473ba7d6680aca5727c1880d3a717 |
|
MD5 | 41e622b30d8e5f7dd42a08c4d9dc1e46 |
|
BLAKE2b-256 | 78639b6ec6e3010864d93307f8a4f25739db0dfab2278df70b3170876c81f301 |
File details
Details for the file python_steam_api-1.2.0-py3-none-any.whl
.
File metadata
- Download URL: python_steam_api-1.2.0-py3-none-any.whl
- Upload date:
- Size: 11.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b470faf259bcfd6b5372b4142af95b6d9edbe76d70429ff03f10e56420f0cc3 |
|
MD5 | 733aaf801028e4a871ad41bbb798229a |
|
BLAKE2b-256 | 9c130cbf47138c4c9b9f1572a29ce116f94309fe435ec14fc4688af3f86a8add |