10 lines
121 B
Python
10 lines
121 B
Python
#!/usr/bin/env python3
|
|
|
|
"""
|
|
List of regex matching first-party trackers.
|
|
"""
|
|
|
|
REGEXES = [
|
|
r'^.+\.eulerian\.net\.$'
|
|
]
|