https://github.com/ph00lt0/django-no-floc
Middleware to opt out of Google's FLoC cohort tracking.
https://github.com/ph00lt0/django-no-floc
chrome cohorts django floc tracking
Last synced: about 2 months ago
JSON representation
Middleware to opt out of Google's FLoC cohort tracking.
- Host: GitHub
- URL: https://github.com/ph00lt0/django-no-floc
- Owner: ph00lt0
- License: mit
- Created: 2021-04-09T20:38:25.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-09T20:41:15.000Z (about 5 years ago)
- Last Synced: 2025-03-30T08:32:20.810Z (about 1 year ago)
- Topics: chrome, cohorts, django, floc, tracking
- Language: Python
- Homepage: https://pypi.org/project/django-no-floc/0.1.0/
- Size: 18.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
---
title: django-no-floc
---
[](https://badge.fury.io/py/django-no-floc)
[](https://travis-ci.org/ph00lt0/django-no-floc)
[](https://codecov.io/gh/ph00lt0/django-no-floc)
Middleware to opt out of Google\'s FLoC cohort tracking.
# Documentation
The full documentation is at .
# Quickstart
Install django-no-floc:
pip install django-no-floc
Add it to your \`INSTALLED_APPS\`:
``` {.python}
MIDDLEWARE = (
...
'no_floc.middleware.NoFLoCMiddleware',
...
)
```
# Running Tests
Does the code actually work?
source /bin/activate
(myenv) $ pip install tox
(myenv) $ tox
# Development commands
pip install -r requirements_dev.txt
invoke -l
# Credits
Tools used in rendering this package:
- [Cookiecutter](https://github.com/audreyr/cookiecutter)
- [cookiecutter-djangopackage](https://github.com/pydanny/cookiecutter-djangopackage)