#!/usr/bin/env python3 """ List of regex matching first-party trackers. """ # Syntax: https://docs.python.org/3/library/re.html#regular-expression-syntax REGEXES = [ r'^.+\.eulerian\.net\.$', r'^.+\.criteo\.com\.$', r'^.+\.keyade\.com\.$', r'^.+\.omtrdc\.net\.$', ]