Pulling League of Legends profile and match data from op.gg website.
Project description
A python library to pull information on Profile and MatchHistory from op.gg (last verified 06/05/2020).
Note: scrapes using English, only tested on NA server at the moment.
Requirements
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.support.wait import WebDriverWait
import re
import os
from bs4 import BeautifulSoup
Installation
pip install scrapeGG==0.0.4
or
git clone https://github.com/emily-yu/animelyrics.git cd animelyrics python setup.py
Usage
set up chromedriver, if not already exists check if already exists using chromedriver --version
install chromedriver brew cask install chromedriver
find path which chromedriver
import and create an instance, such that ‘API’ is the summonerName you want to search for.
scrapeGG(string summonerName)
from scrapeGG import scrapeGG init = scrapeGG('API')
Functions
(see scrape_test.py for usage examples) (see snapshots/06-06-2020.json for example output)
scrapeGG.profile
.getProfile() - [CONSTRUCTOR] - returns profile()
.recently_played_with()
.top_played_champions() - todo
.rank(string game_type= [“Ranked Solo”, “Total”, “Ranked Flex 5v5”) - todo
scrapeGG.match
.getMatch(int count) - returns match()
.getMatchSequence(int count) - returns arrscrapeGG.match
.game_player_names(is_win)
.self_stats()
.recent.player_stats(string summonerName) - summonerName can be any of the players in the game
.overview() - unstable*
.build() - unstable*
*selenium has issues with click events, which occasionally raisesselenium.common.exceptions.ElementClickInterceptedException: Message: element click intercepted
example usage
from scrapeGG import scrapeGG init = scrapeGG('API') # test match api class recent = init.getMatch(1) player_names = recent.game_player_names(True) profile = init.getProfile() ranksolo_rank = profile.rank('Ranked Solo')
changelog
0.0.2 - first release on PyPI
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file scrapeGG-0.0.5.tar.gz
.
File metadata
- Download URL: scrapeGG-0.0.5.tar.gz
- Upload date:
- Size: 8.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 50690b31615fbf2ad1d4ed5b87cb5c4d2ad4ff2a719acd66a104e8c80b525e0a |
|
MD5 | c1c4bc3506862f429c534e842190ab1f |
|
BLAKE2b-256 | 1665c179aeabe8d50458f0b70d84b878187ef40a9357ce2f72bba22bb0cdee9d |
File details
Details for the file scrapeGG-0.0.5-py2.py3-none-any.whl
.
File metadata
- Download URL: scrapeGG-0.0.5-py2.py3-none-any.whl
- Upload date:
- Size: 9.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 87c7a6158d7748f51b593f546e5463a7bf9bb2449802f13f557bd8f4a82bf970 |
|
MD5 | aa1af401b2fcf4ed1876496af8ce319d |
|
BLAKE2b-256 | c562a9b8068bdc4b09e658dffbf6abc44bb144d7803633337fb9dbf357851ea4 |