Steam Store Front is an easy to use package to get game or app details from steam store.


Keywords
steamstorefront, python, python-module, python-package, python3, steam, steam-api
License
MIT
Install
pip install steamstorefront==0.0.3.8

Documentation

Steam Store Front

https://img.shields.io/pypi/v/steamstorefront.svg?style=flat-square https://img.shields.io/travis/com/santoshpanna/steamstorefront?style=flat-square Documentation Status

Steam Store Front is an easy to use package to get game or app details from steam store.

Note

It is not a client. You cannot interact with steam to make purchase or do actions which requires login.*

Features

  • Supports apps
  • Supports packages
  • Supports bundles

Todo

  • more details about app from other souces
  • support for pages like developers, publishers, sales etc

Installation

pip install steamstorefront

Usage

Constructor:

import steamstorefront

ssf = steamstorefront.SteamStoreFront(appid=203160, category="app")

ssf.getName()
ssf.getPrice()

Function:

from steamstorefront import SteamStoreFront

ssf = SteamStoreFront()

ssf.getName(appid=203160, category="app")
ssf.getPrice(appid=203160, category="app")

When quering data for same app:

from steamstorefront import SteamStoreFront

ssf = SteamStoreFront()

ssf.getName(appid=203160, category="app")
# it stores the appid and category so no need to pass it twice
ssf.getPrice()

When quering for different app:

from steamstorefront import SteamStoreFront

ssf = SteamStoreFront()

ssf.getName(appid=203160, category="app")
ssf.getName(appid=730, category="app")

Credits