evaneliasyoung / steam-py

A Python API for Steam userdata
GNU General Public License v3.0
3 stars 0 forks source link
api steam

Steam

Build Status Documentation Status Release PyPI

The time from profile request to usable data is ≈ 3 seconds

Installation

Windows

pip3 install steam-py

macOS

sudo -H pip3 install steam-py

Linux

sudo pip3 install steam-py

How-To Use

import steam

evan = steam.User(s64='76561198069463927') # My Steam account, provided in SteamID64
print(f'{evan.name} is Level {evan.level}, wow- how sad')

output

Evan Elias Young is Level 40, wow- how sad

View the wiki for documentation on the user type

Requirements

Any requirements will automatically be installed using the aforementioned installation method.

To install any modules use pip3 install (module)