Archived
1
0
Fork 0
utility to parse runelite's drop data
This repository has been archived on 2026-03-18. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
Find a file
2020-11-03 21:33:27 -08:00
LICENSE Updated LICENSE and README, removed github funding thing 2020-11-03 21:33:27 -08:00
parse.py Cleaned up code, added options, updated readme 2020-08-26 23:00:20 -07:00
README.md Updated LICENSE and README, removed github funding thing 2020-11-03 21:33:27 -08:00
rsitems.json Initial Version 2019-08-18 20:32:21 -07:00

Usage

  • Copy / Clone repository onto computer
  • Make sure Python 3 is installed (download here)
  • Copy JSON data file(s) into folder
  • In powershell navigate to folder (cd insert/path/here/)
  • run ./parse.py data1.json ... datan.json

Tips

You can configure the script to combine data or not (not will be faster) as well as if to output the results to file (output.txt), what to name the output file, and if to output to command line.

Notes

If powershell gives you an error saying cmdlet not found, then run the following command: $env:PATHEXT += ";.py". This will allow powershell to run python scripts as executables.

The script will combine all data passed as arguments into combined.json

If you want to configure the script manually, look for CONFIGURATION in the source code (parse.py)!