An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

---
title: django-no-floc
---

[![image](https://badge.fury.io/py/django-no-floc.svg)](https://badge.fury.io/py/django-no-floc)

[![image](https://travis-ci.org/ph00lt0/django-no-floc.svg?branch=master)](https://travis-ci.org/ph00lt0/django-no-floc)

[![image](https://codecov.io/gh/ph00lt0/django-no-floc/branch/master/graph/badge.svg)](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)