Skip to content
This repository has been archived by the owner on Oct 6, 2022. It is now read-only.

Latest commit

 

History

History
28 lines (19 loc) · 927 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 927 Bytes

transfermarkt

Scrapping of Historical Market Values (MV) of football players from www.transfermarkt.com using Scrapy. The MVs are collected for each player in the First Tear competitions of a given continent.

Spiders:

Values:

Extracts the historical market values for a given continent

Arguments:

  1. continent: the selected continent

Output:

A Python dictionary:

{ player : {name, id, current_team}, market_value : {value, team, date} }

with a set of players info:

  1. name: player's name on transfermarkt
  2. id: transfermarkt's unique id number for each player
  3. current_team: team player was registered for on the scrapping date

along with the historical market values (list oriented):

  1. value: the players value in euros (ex. 10000000 = 10M€)
  2. team: the team the player was registered for on the day of the valuation
  3. date: the valuation date ('yyyy-mm-dd')