-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathteam.py
29 lines (24 loc) · 1.02 KB
/
team.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from player import PlayerProfile
BASE_URL = "https://www.transfermarkt.co.uk"
class Team:
def __init__( self, url, name, scraper):
self.LeagueName = name
soup = scraper(url)
#reading player table and filtering for offensive players
playerTable = soup.find("table", class_="items")
players = playerTable.find_all("a", class_="spielprofil_tooltip")[::2]
offensivePlayers = filter( Team.isStrikerOrWinger, players)
offensivePlayersUrls = [BASE_URL + player["href"] for player in offensivePlayers]
#self.PlayerData = [PlayerProfile( playerUrl, scraper) for playerUrl in offensivePlayersUrls]
self.PlayersData = []
for playerUrl in offensivePlayersUrls:
try:
NewPlayerProfile = PlayerProfile( playerUrl, scraper)
NewPlayerProfile.PlayerData["current league"] = self.LeagueName
self.PlayersData.append( NewPlayerProfile)
except:
continue
@staticmethod
def isStrikerOrWinger( player):
position = player.find_next("tr").text.strip().lower()
return "wing" in position or "centre-forward" in position