Metadata-Version: 2.1
Name: pyrule-compendium
Version: 2.4.1
Summary: The official python wrapper for the Hyrule Compendium API
Home-page: https://github.com/gadhagod/pyrule-compendium
Author: Aarav Borthakur
Author-email: gadhaguy13@gmail.com
License: UNKNOWN
Description: # pyrule compendium
        The official python API wrapper for the Hyrule Compendium API.
        
        ## Installation
        
            pip3 install pyrule-compendium
        
        ## Documentation
        Detailed docs and guide [here](https://gadhagod.github.io/Hyrule-Compendium-API/#/client-libraries/python?id=python-wrapper).
        
        ## Basic Usage
            from pyrule_compendium import compendium
        
            print(compendium().get_all()) # get all entries
            print(compendium().get_entry("silver_lynel")) # get a specific entry with it's name
            print(compendium().get_entry(1)) # get a specific entry with it's ID
            print(compendium().get_category("monsters")) # get all entries in a category
            compendium().get_image("silver_lynel").download() # download entry image
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
