eulaurarien/regexes.py

15 lines
285 B
Python
Raw Normal View History

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