eulaurarien/regexes.py

12 lines
175 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.
"""
REGEXES = [
r'^.+\.eulerian\.net\.$'
2019-11-10 22:29:30 +00:00
r'^.+\.criteo\.com\.$'
r'^.+\.keyade\.com\.$'
2019-11-10 17:14:25 +00:00
]