rlgpy
1.0.0
JSON 형식의 거래, 아이템 및 업적 데이터를 검색하기 위한 Rocket League Garage Python 패키지입니다.
페이지에 내장된 Google 보안 문자로 인해 거래 추가 및 자동 범핑이 불가능합니다. Selenium을 사용하여 수행할 수 있지만 이 패키지의 목적을 위해 저는 이를 데이터 추출기로 그대로 두기로 결정했습니다.
from rlgpy . api import RocketLeagueGarage
# Each call returns a list of the data in JSON format.
item_data = RocketLeagueGarage . get_items ()
trade_data = RocketLeagueGarage . get_trades ()
achievement_data = RocketLeagueGarage . get_achievements ()
# Trade data can be extracted from any page containing trades!
# Example using page with filter parameters in the URL:
url = 'https://rocket-league.com/trading?filterItem=1709&filterCertification=0&filterPaint=0&filterPlatform=0&filterSearchType=1'
trade_data = RocketLeagueGarage . get_trades ( url = url )
# Example using page of someone's profile:
url = 'https://rocket-league.com/trades/KizunaAi'
trade_data = RocketLeagueGarage . get_trades ( url = url )