Metadata-Version: 2.1
Name: leaguepedia_parser
Version: 0.1.0
Summary: A parser for the Leaguepedia website, focused on accessing esports data.
Home-page: https://github.com/mrtolkien/leaguepedia_parser
Author: Tolki
Author-email: gary.mialaret+pypi@gmail.com
License: MIT
Description: # leaguepedia_parser
        A parser for the Leaguepedia website, focused on accessing esports data.
        
        Possible future functionality includes direct querying for games from team names, fuzzy matching for tournament names, 
        and so on and so forth.
        
        # Install
        `pip install leaguepedia_parser`
        
        # Usage
        ```python
        import leaguepedia_parser
        
        lp = leaguepedia_parser.LeaguepediaParser()
        
        # Gets you available regions
        lp.get_tournament_regions()
        
        # Gets you tournaments in the region, by default only returns primary tournaments
        tournaments = lp.get_tournaments('Korea', year=2020)
        
        # Gets you all games for a tournament. Get the name from get_tournaments()
        games = lp.get_games(tournaments[0]['name'])
        
        # Gets picks and bans for a game. Get the game object from get_games()
        lp.get_picks_bans(games[0])
        ```
        
        # river_mwclient
        
        If you installed `river_mwclient`, the `LeaguepediaParser` class will inherit from its `EsportsClient` class.
        
        If not, it
        will simply be a wrapper for `mwclient`.
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
