offish / steam_community_market

Get item prices and volumes from the Steam Community Market using Python 3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

steam_community_market

Latest version released on PyPi License Stars Issues Repo Size Discord

Donate via Steam Donate via PayPal

Get prices and volumes of any item on the Steam Community Market using Python 3.

Table of Contents

Installing

Install and update using pip:

pip install --upgrade steam_community_market

Usage

from steam_community_market import Market, AppID

market = Market("USD")

item = "AK-47 | Redline (Field-Tested)"

market.get_lowest_price(item, AppID.CSGO)
14.98

market.get_volume(item, 730)
1097

"USD" can either be ESteamCurrency, str, int or empty. Find the currencies supported here.

Documentation

Documentation for this package can be found on readthedocs.

License

MIT License

Copyright (c) 2020 offish

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Get item prices and volumes from the Steam Community Market using Python 3

License:MIT License


Languages

Language:Python 100.0%