Metadata-Version: 2.1
Name: leaguepedia_parser
Version: 1.0a1
Summary: A parser for Leaguepedia.
Home-page: https://github.com/mrtolkien/leaguepedia_parser
Author: Gary "Tolki" Mialaret
Author-email: gary.mialaret+pypi@gmail.com
License: MIT
Description: [![Generic badge](https://img.shields.io/github/workflow/status/mrtolkien/leaguepedia_parser/Python%20application)](https://shields.io/)
        [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
        
        # leaguepedia_parser
        A parser for Leaguepedia focused on accessing esports data.
        
        It is very minimal at the moment and focused on my own usage of Leaguepedia’s data. Pull requests to add features are
        more than welcome! 
        
        # Install
        `pip install leaguepedia_parser`
        
        # Demo
        ![Demo](leaguepedia_parser_demo.gif)
        
        # Usage
        ```python
        import leaguepedia_parser
        
        # Gets regions names
        regions = leaguepedia_parser.get_regions() 
        
        # Gets tournaments in the region, by default only returns primary tournaments
        tournaments = leaguepedia_parser.get_tournaments("Korea", year=2020)
        
        # Gets all games for a tournament. Get the name from get_tournaments()
        games = leaguepedia_parser.get_games("LCK 2020 Spring")
        
        # Gets picks and bans and other details from a game. Get the game object from get_games()
        game = leaguepedia_parser.get_game_details(games[0])
        
        # Gets the URL of the team’s logo
        logo_url = leaguepedia_parser.get_team_logo('T1')
        ```
        
        More usage examples can be found in the [`_tests` folder](https://github.com/mrtolkien/leaguepedia_parser/tree/master/leaguepedia_parser/_tests).
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
