liquipediapy
liquipediapy copied to clipboard
api for liquipedia.net
This seems to be absent from the TODO file. https://github.com/c00kie17/liquipediapy/blob/master/TODO.md
The default usage of the method : team_details = counterstrike_obj.get_team_info('Team Liquid',True) throws out this error: Traceback (most recent call last): File "teams.py", line 5, in team_details = counterstrike_obj.get_team_info('Team Liquid',True) File...
Upon using the get_pro_circuit_details() method, it appears to return the rankings from [this page](https://liquipedia.net/dota2/Dota_Pro_Circuit/2018-19/Rankings) with the 2018-2019 DPC. I'm not sure if this is intentional given the sudden halt of...
- Adding Smash module to liquipediapy - Adding a DevParser class, allowing to store requested page to a folder and read back from it (Works for dota and cs too)
I wanted to rerun all tests from current project state to be sure my future PR hasn't break anything. (HEAD detached at 3710936) ==> Last commit of this repo #...
for match in matches: game = {} cells = match.find_all('td') try: game['team1'] = cells[0].find('span',class_='team-template-image').find('a').get('title') game['format'] = cells[1].find('abbr').get_text() game['team2'] = cells[2].find('span',class_='team-template-image').find('a').get('title') game['start_time'] = cells[3].find('span',class_="timer-object").get_text() game['tournament'] = cells[3].find('div').get_text().rstrip() try: game['twitch_channel'] = cells[3].find('span',class_="timer-object").get('data-stream-twitch')...
fixed dota2 `get_transfers `def to take `Old` or `New` team key (instead of `Previous` and `Current`) of the player and added the `Ref` key to take the reference href link...
This should fix some of #17. Seems like they changed the html structure.