Metadata-Version: 2.1
Name: django-floc-disable
Version: 1.0.0
Summary: Django middleware to disable Google FLoC tracking
Home-page: https://github.com/nhymxu/django-floc-disable
Author: Dung Nguyen
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/nhymxu/django-floc-disable/issues
Project-URL: Funding, https://dungnt.net/donate.html
Description: # django-floc-disable
        
        [![unit test](https://github.com/nhymxu/django-floc-disable/actions/workflows/test-python.yml/badge.svg?branch=main)](https://github.com/nhymxu/django-floc-disable/actions/workflows/test-python.yml)
        
        Django middleware to disable Google's Federated Learning of Cohorts (`FLoC`) tracking
        
        ## Python / Django Support
        
        - Python 3.6+
        - Django versions 3+
        
        ## Usage
        
        Install django-floc-disable:
        
        ```shell
        pip install django-floc-disable
        ```
        
        Add it to your `INSTALLED_APPS`:
        
        ```python
        MIDDLEWARE = (
            # ...
            'django_floc_disable.middleware.FLoCDisableMiddleware',
            # ...
        )
        ```
        
        This will set the `Permissions-Policy` header to a value of
        `interest-cohort=()` for every request served by Django.
        
        ## Support
        
        * Issues: <https://github.com/nhymxu/django-floc-disable/issues>
        * Here you can [donate](https://dungnt.net/donate.html) for this project.
        
        ## License
        
        The MIT License (MIT). Please see [License File](LICENSE.txt) for more information.
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.6
Description-Content-Type: text/markdown
