惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
H
Help Net Security
Jina AI
Jina AI
V
V2EX
G
Google Developers Blog
B
Blog
GbyAI
GbyAI
U
Unit 42
爱范儿
爱范儿
腾讯CDC
Engineering at Meta
Engineering at Meta
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
宝玉的分享
宝玉的分享
小众软件
小众软件
D
DataBreaches.Net
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - Franky
博客园 - 聂微东
The Cloudflare Blog
I
InfoQ
Microsoft Azure Blog
Microsoft Azure Blog
Hugging Face - Blog
Hugging Face - Blog
大猫的无限游戏
大猫的无限游戏

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
The Bosman Effect, in one open dataset: how World Cup squ...
Maria-Luise Volkmar · 2026-06-24 · via DEV Community

Maria-Luise Volkmar

In 1990, roughly one in four players at the FIFA World Cup was based at a club outside the country his national team represented. At the 2026 edition it is nearly three in four. That is a structural shift in a labour market, and it has a surprisingly precise cause: a 1995 court ruling.

I pulled the squad data together, cleaned it into a small CSV, and put it on GitHub under CC BY 4.0 so anyone can check the trend or build on it. This post walks through what the data shows and how to reproduce the headline chart in a few lines of Python.

The headline number

Share of foreign-based players across World Cup squads:

Year Foreign-based share
1990 26.2%
2002 38.1%
2014 53.9%
2026 72.2%

The inflection point is the Bosman ruling (European Court of Justice, 15 December 1995, Case C-415/93), which abolished EU limits on foreign players and allowed free transfers at contract end. Professional footballers became, legally, ordinary workers with the right to work anywhere in the single market.

Reproduce it

The dataset is two CSVs. Loading the time series straight from GitHub:

import pandas as pd

url = ("https://raw.githubusercontent.com/DatapulseResearch/"
       "world-cup-players-abroad/main/data/"
       "world_cup_squads_foreign_based_share_1990_2026.csv")

df = pd.read_csv(url)
ax = df.plot(x="year", y="foreign_based_share_percent",
             marker="o", legend=False,
             title="Foreign-based players in World Cup squads, 1990 to 2026")
ax.set_ylabel("% of squad based abroad")
ax.axvline(1995, linestyle="--", alpha=.4)  # Bosman

One line and you can see the post-1995 climb.

The counterintuitive part

You might expect the strongest nations to export the most players. The opposite is true. The 2026 per-country table (world_cup_2026_foreign_based_by_country.csv) shows the strongest domestic leagues keep their talent at home:

Nation Foreign-based share, 2026
Switzerland 100%
Argentina 94%
Brazil 89%
France 83%
Germany 33%
England 22%

England and Germany, with the strongest leagues, retain the most. Talent follows the biggest market, not the passport.

Data and method

If you do something with the data (a different cut, a model, a better chart), I would love to see it in the comments.