| Conditions | 1 |
| Total Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | #!/usr/bin/python |
||
| 21 | def get_all_item_prices(self, app_id=CommonSteamGames.APP_ID_CSGO): |
||
| 22 | """GetAllItemPrices v1 implementation |
||
| 23 | https://bitskins.com/api/#get_all_item_prices |
||
| 24 | |||
| 25 | Returns the suggested prices for every item on the market |
||
| 26 | |||
| 27 | :param app_id: |
||
| 28 | :return: |
||
| 29 | """ |
||
| 30 | api_url = "https://bitskins.com/api/v1/get_all_item_prices/" |
||
| 31 | |||
| 32 | payload = { |
||
| 33 | 'app_id': str(app_id) |
||
| 34 | } |
||
| 35 | |||
| 36 | return self.api_request(api_url=api_url, params=payload) |
||
| 37 | |||
| 54 |