コード例 #1
0
ファイル: market.py プロジェクト: Ermans/steampy
 def _confirm_sell_listing(self, asset_id: str) -> dict:
     con_executor = ConfirmationExecutor(
         self.steam_session.steam_guard['identity_secret'],
         self.steam_session.steam_guard['steamid'], self.steam_session)
     try:
         return con_executor.confirm_sell_listing(asset_id)
     except Exception as e:
         raise SteamServerError("[CONFIRM_SELL_LISTING_ERROR]") from e
コード例 #2
0
 def _confirm_transaction(self, trade_offer_id: str) -> dict:
     confirmation_executor = ConfirmationExecutor(
         self.steam_guard['identity_secret'], self.steam_guard['steamid'],
         self._session)
     return confirmation_executor.send_trade_allow_request(trade_offer_id)
コード例 #3
0
ファイル: market.py プロジェクト: sollybr/steampy
 def _confirm_sell_listing(self, asset_id: str) -> dict:
     con_executor = ConfirmationExecutor(
         self._steam_guard['identity_secret'], self._steam_guard['steamid'],
         self._session)
     return con_executor.confirm_sell_listing(asset_id)
コード例 #4
0
 def get_transactions(self):
     confirmation_executor = ConfirmationExecutor(
         '', self.mafile['identity_secret'],
         str(self.mafile['Session']['SteamID']), self._session)
     confirmation_executor._get_confirmations()
コード例 #5
0
 def confirm_market_transactions(self):
     confirmation_executor = ConfirmationExecutor(
         '', self.mafile['identity_secret'],
         str(self.mafile['Session']['SteamID']), self._session)
     return confirmation_executor.send_markettrans_allow_request()
コード例 #6
0
 def _confirm_transaction(self, trade_offer_id: str) -> dict:
     confirmation_executor = ConfirmationExecutor(
         trade_offer_id, self.mafile['identity_secret'],
         str(self.mafile['Session']['SteamID']), self._session)
     return confirmation_executor.send_trade_allow_request()
コード例 #7
0
ファイル: market.py プロジェクト: slavugan/steampy
 def _confirm_sell_listing(self, asset_id: str) -> dict:
     con_executor = ConfirmationExecutor(self._identity_secret,
                                         self.steam_id, self._session)
     return con_executor.confirm_sell_listing(asset_id)
コード例 #8
0
ファイル: client.py プロジェクト: bukson/steampy
 def _confirm_transaction(self, trade_offer_id: str) -> dict:
     confirmation_executor = ConfirmationExecutor(self.steam_guard['identity_secret'], self.steam_guard['steamid'],
                                                  self._session)
     return confirmation_executor.send_trade_allow_request(trade_offer_id)