Last active
February 11, 2019 14:12
-
-
Save SeanColombo/699fa2aedecab2ee8dd42d6687540efd to your computer and use it in GitHub Desktop.
GDPR digital age-of-consent by country in the EU
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Much of this info comes from here, but I'd love some additional feedback: | |
# https://www.betterinternetforkids.eu/web/portal/practice/awareness/detail?articleId=3017751 | |
# Most recently updated from the source-site on 20190207. | |
# | |
# Please note that this includes European Economic Area countries (Norway, Iceland, Liechtenstein) | |
# which have also adopted the GDPR. Please note that our main source site does not mention Liechtenstein | |
# yet, but it is well known to have adopted the GDPR (see also: | |
# https://www.delacruzberanek.com/en/gdpr-liechtenstein-norway-iceland/ ) so we have included it with | |
# the default (most strict) setting of 16. | |
# | |
# Country codes used here are from https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 | |
_AGE_BY_COUNTRY = { | |
'AT': 14, # Austria | |
'BE': 13, # Belgium | |
'BG': 16, # Bulgaria | |
'HR': 16, # Croatia | |
'CY': 14, # Cyprus | |
'CZ': 16, # Czech Republic (Czechia) | |
'DK': 13, # Denmark | |
'EE': 16, # Estonia | |
'FI': 13, # Finland | |
'FR': 15, # France | |
'DE': 16, # Germany | |
'GR': 16, # Greece | |
'HU': 16, # Hungary | |
'IE': 16, # Ireland | |
'IS': 16, # Iceland [DEFAULT] - European Economic Area but adopted GDPR | |
'IT': 14, # Italy | |
'LI': 16, # Liechtenstein [DEFAULT] - European Economic Area but adopted GDPR | |
'LV': 13, # Latvia | |
'LT': 14, # Lithuania | |
'LU': 16, # Luxembourg | |
'MT': 13, # Malta | |
'NO': 13, # Norway - approved Personal Data Act in May 2018 and adopted GDPR (EEA) | |
'NL': 16, # The Netherlands | |
'PL': 16, # Poland | |
'PT': 16, # Portugal | |
'RO': 16, # Romania | |
'SK': 16, # Slovakia | |
'SI': 16, # Slovenia | |
'ES': 14, # Spain | |
'SE': 13, # Sweden | |
'GB': 13 # Great Britain/UK | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment