eulaurarien/regexes.py

15 lines
285 B
Python
Raw Normal View History

2019-11-10 17:14:25 +00: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 17:14:25 +00:00
REGEXES = [
2019-11-10 22:58:49 +00:00
r'^.+\.eulerian\.net\.$',
r'^.+\.criteo\.com\.$',
r'^.+\.keyade\.com\.$',
r'^.+\.omtrdc\.net\.$',
2019-11-10 17:14:25 +00:00
]