Skip to content

gadhagod/pyrule-compendium

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyrule compendium

The official python API wrapper for the Hyrule Compendium API.

Installation

pip3 install pyrule-compendium

Documentation

Detailed documentation can be found here.

Basic Usage

from pyrule_compendium import compendium

comp = compendium()
print(comp.get_all()) # get all entries
print(comp.get_entry("silver_lynel")) # get a specific entry with it's name
print(comp.get_entry(1)) # get a specific entry with it's ID
print(comp).get_category("monsters")) # get all entries in a category
comp.get_image("silver_lynel").download() # download entry image

Made with ❤️ by Aarav Borthakur and Shaunik Musukula.