https://github.com/cerivitos/fifa-scrape
Transfer history of all FIFA players
https://github.com/cerivitos/fifa-scrape
fifa scraping sofifa
Last synced: 2 months ago
JSON representation
Transfer history of all FIFA players
- Host: GitHub
- URL: https://github.com/cerivitos/fifa-scrape
- Owner: cerivitos
- License: mit
- Created: 2022-02-23T14:37:25.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-03-15T14:05:25.000Z (about 3 years ago)
- Last Synced: 2025-01-23T11:17:02.443Z (4 months ago)
- Topics: fifa, scraping, sofifa
- Language: JavaScript
- Homepage:
- Size: 12.4 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FIFA transfer history
## Data
This repo contains data scraped from [SoFIFA](https://sofifa.com) and all data belongs to their respective owners.## What this is
The file `final/allPlayers.json` is a json file of all players to have appeared in FIFA07 - FIFA22 in the following data structure:
```
{
playerName: string,
playerId: number,
playerImg: string,
history: [
teamId: string,
teamName: string,
teamImg: string
]
}
```
Note that `teamId` is a concatenation of the unique FIFA team ID and the season. Eg. If the player played for Celta Vigo in season 2008/2009, the `teamId` will be `450-2008/2009`.Other files are just intermediate scraping files and node scripts.