rlgpy
1.0.0
แพ็คเกจ Python ของ Rocket League Garage สำหรับการดึงข้อมูลการค้า ไอเท็ม และความสำเร็จในรูปแบบ JSON
เนื่องจาก Google captcha มีอยู่ในหน้า การเพิ่มและการชนการซื้อขายอัตโนมัติจึงไม่สามารถทำได้ สามารถทำได้โดยใช้ 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 )