You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from steampy.client import SteamClient, Asset
from steampy.utils import GameOptions
Предоставленные данные
api_key = ''
username = ''
password = ''
steamguard_path = 'Steamguard.txt' # Путь к файлу Steamguard.txt
partner_id = "" # ID трейд-партнера
sending_item_id = '' # ID отправляемого предмета
game = GameOptions.CS # Используем GameOptions для CS:GO
Инициализируем клиент Steam
steam_client = SteamClient(api_key)
try:
# Логинимся в Steam с использованием файла Steamguard.txt
steam_client.login(username, password, steamguard_path)
print("Успешная авторизация в Steam")
# Создаем объект Asset для отправляемого предмета
my_asset = Asset(asset_id=sending_item_id, game=game)
# Отправляем трейд-офер
offer_result = steam_client.make_offer([my_asset], [], partner_id, "Test offer")
if 'tradeofferid' in offer_result:
print(f"Трейд-офер успешно отправлен. ID: {offer_result['tradeofferid']}")
else:
print(f"Ошибка при создании трейд-офера: {offer_result}")
except Exception as e:
print(f"Произошла ошибка: {e}")
finally:
try:
steam_client.logout()
print("Выход из аккаунта Steam.")
except Exception:
print("Не удалось выйти: пользователь не был авторизован.")
Успешная авторизация в Steam
Произошла ошибка: 'NoneType' object has no attribute 'get'
Выход из аккаунта Steam.
The text was updated successfully, but these errors were encountered:
from steampy.client import SteamClient, Asset
from steampy.utils import GameOptions
Предоставленные данные
api_key = ''
username = ''
password = ''
steamguard_path = 'Steamguard.txt' # Путь к файлу Steamguard.txt
partner_id = "" # ID трейд-партнера
sending_item_id = '' # ID отправляемого предмета
game = GameOptions.CS # Используем GameOptions для CS:GO
Инициализируем клиент Steam
steam_client = SteamClient(api_key)
try:
# Логинимся в Steam с использованием файла Steamguard.txt
steam_client.login(username, password, steamguard_path)
print("Успешная авторизация в Steam")
except Exception as e:
print(f"Произошла ошибка: {e}")
finally:
try:
steam_client.logout()
print("Выход из аккаунта Steam.")
except Exception:
print("Не удалось выйти: пользователь не был авторизован.")
Успешная авторизация в Steam
Произошла ошибка: 'NoneType' object has no attribute 'get'
Выход из аккаунта Steam.
The text was updated successfully, but these errors were encountered: