Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes scraping player team name #104

Merged
merged 1 commit into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ffbot/constants.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "1.2.9"
VERSION = "1.2.10"
2 changes: 1 addition & 1 deletion ffbot/scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
td = row.select("td")[1]
ID = td.select_one(".player-status a")["data-ys-playerid"]
ID = int(ID)
team = td.select_one(".ysf-player-name span").text
team = td.select_one(".ysf-player-name .D-b span").text

Check warning on line 84 in ffbot/scraper.py

View check run for this annotation

Codecov / codecov/patch

ffbot/scraper.py#L84

Added line #L84 was not covered by tests
team = team.split()[0]
data.add((ID, team))

Expand Down
Loading