Skip to content

wa1ker38552/rolimons.py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

84 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Rolimons

An unofficial Python API wrapper for Rolimons

rolimons.py is an api wrapper for rolimons It allows you to fetch data from the official rolimons api as well as data that can only be scraped.

Getting Started
pip install rolimons

Quick Start 🛠️

import rolimons

player = rolimons.player(name='Roblox')
print(player.rap, player.value)

item = rolimons.item(1365767)
print(item.rap, item.value)

sales = item.get_recent_sales()
for sale in sales:
  print(sale.timestamp, sale.old_rap, sale.new_rap)
  
for player in rolimons.utils().get_leaderboard():
  print(player.name, player.value, player.rap)

Notes

  • rolimons.player.query_data() only works with ipv4 addresses

About

A Python API wrapper for Rolimons

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages