Skip to content

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

License

Notifications You must be signed in to change notification settings

santoshpanna/SteamStoreFront

Repository files navigation

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

About

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

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published