Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ponddy-cookie-agreement

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ponddy-cookie-agreement

The cookie agreement API for logging user agreement

  • 0.0.9
  • PyPI
  • Socket score

Maintainers
1

The simple cookie agreement implementation and logging user accepting action.

Installation

Normal

Install using pip

pip install ponddy-cookie-agreement

Add cookie_policy to your INSTALL_APPS setting.

INSTALLED_APPS = [
    ...
    'cookie_policy',
]

Add endpoint on your API root urlpatterns

urlpatterns = [
    ...
    path('cookie/policy/', include('cookie_policy.urls')),
]

Use template

Check your TEMPLATES setting already have request context process in your context_processors

TEMPLATES = [
    {
        ...
        'OPTIONS': {
            'context_processors': [
            ...,
            'django.template.context_processors.request'
            ],
        },
    }
]

Add the CSS and JS file and include tag in your template what page you want to show the cookie policy agreement

{% load static %}

<head>

<link href="{% static 'cookie_agreement/cookie.css'%}" rel="stylesheet">
<script src="{% static 'cookie_agreement/cookie.js' %}"></script>

</head>

<body>
{% include 'cookie_agreement.html' %}
</body>

Settings

URLs

PRIVACY_POLICY_URL
TERM_OF_SERVICE_URL

THROTTLE

Setting the restful default throttle rates for throttling the accept cookie policy API

DEFAULT_THROTTLE_RATES

Example:

REST_FRAMEWORK = {
	'DEFAULT_THROTTLE_RATES': {
        'user': '100/day',
        'anon': '100/day',
    }
}

If you do not want to limit user and your settings already have throttle rates please set user and anon to None

REST_FRAMEWORK = {
	'DEFAULT_THROTTLE_RATES': {
        'your_other_scope': '100/day',
        'user': None,
        'anon': None,
    }
}

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc