Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Rocket League Garage API in Python

NotificationsYou must be signed in to change notification settings

Alfa-Q/rlgpy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build StatuscodecovCodacy Badge

Rocket League Garage python package for retrieving trade, item, and achievement data inJSON format.


Features

  • Scrape trade data with options to use a custom URL containing trade information.
  • Scrape Rocket League item data.
  • Achievement data.

Due to Google captcha built-into the page, adding and auto-bumping trades is not possible. It couldbe done using Selenium, but for the purposes of this package I have decided to just leave it as adata extractor.


Examples of basic usage

fromrlgpy.apiimportRocketLeagueGarage# 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)

Releases

No releases published

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp