Skip to content

Tools for getting data from LoL sites like u.gg

License

Notifications You must be signed in to change notification settings

bluebeargreen-2/LoL-Scrapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LoL-Scrapper

Tools for getting data from LoL sites like u.gg

Setup:

Install from github using pip install git+https://github.com/AlsoSylv/LoL-Scrapper.git This is designed to work without the usage of LoL API

Usage:

Examples can be found in ./examples/{site-name}, but should be mostly the same between sites.

Example for u.gg:

from LoL_Scrapper import ugg

#async
async def winrate():
    await UGG.Win_rate("Annie")

#sync
def winrate():
    loop = asyncio.get_event_loop()
    winrate = UGG.Win_rate("Annie")
    loop.run_until_complete(winrate)
    
#Returns the current winrate for Annie in the mid lane

Currently Supports:

About

Tools for getting data from LoL sites like u.gg

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages