/rolipy

A python module for interacting with rolimon's, a roblox value site.

Primary LanguagePython

rolipy

rolipy is an open source python-based rolimon's api wrapper rolimon's private api.

Table of Contents

Examples

Getting an item's value

value = rolipy.getValue(21070012)

Getting the item attributes to every item on the catalog

itemdata = []

catalog = rolipy.getlimitedsCatalog(format='id')

catalogatrributes = rolipy.getitemAttributes(catalog))

Getting the value, demand, acronym, trend, projected status, and hyped status of an item

details = rolipy.getitemAttributes(21070012)

itemattributes = details['name'], details['acronym'], details['value'], details['demand'], details['trend'], details['projected'], details['hyped'])