Bringing Transparency to online tracking - built by Cliqz and Ghostery.
This repository contains:
- data on trackers and websites as shown on whotracks.me (WTM)
- database mapping tracker domains to companies
- code to render the whotracks.me site
Python 3.x is needed to build the site. We recommend creating a
virtualenv (or
pipenv
) to install the dependencies.
Furthermore, you will need to install sass.
$ pip install whotracksme
$ pip install -e .
That's all you need to get started!
To get started with the data, everything you need can be found in
whotracksme.data
:
from whotracksme.data.loader import DataSource
# available entities
DataSource().trackers
DataSource().companies
DataSource().sites
For examples of scripts, have a look in the contrib folder!
Building the site requires a few extra dependencies, not installed by default to
not make the installation heavier than it needs to be. You will need to install
whotracksme
this way:
$ pip install 'whotracksme[website]'
Or if you do it from source:
$ pip install -e '.[website]'
Once this is done, you will have access to a whotracksme
entry point that can
be used this way:
$ whotracksme website [serve]
The serve
part is optional and can be used while making changes on the
website.
All generated artifacts can be found in the _site/
folder.
To run tests, you will need pytest
, or simply install whotacksme
with the
test
extra:
$ pip install -e '.[test,website]'
$ pytest
We are happy to take contributions on:
- Guest articles for our blog in the topics of tracking, privacy and security. Feel free to use the data in this repository if you need inspiration.
- Feature requests that are doable using the WTM database.
- Curating our database of tracker profiles. Open an issue if you spot anything odd.
Please read our Guideline for 3rd parties wanting to suggest corrections to their data.
The content of this project itself is licensed under the Creative Commons Attribution 4.0 license, and the underlying source code used to generate and display that content is licensed under the MIT license.