Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/swing-collection/swing-cookie
Django Swing | Cookie
https://github.com/swing-collection/swing-cookie
cookie cookies cookies-consent cookies-policy django swing swing-collection
Last synced: about 1 month ago
JSON representation
Django Swing | Cookie
- Host: GitHub
- URL: https://github.com/swing-collection/swing-cookie
- Owner: swing-collection
- License: bsd-3-clause
- Created: 2024-08-08T20:47:22.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-09-08T16:52:49.000Z (4 months ago)
- Last Synced: 2024-10-08T12:22:39.326Z (3 months ago)
- Topics: cookie, cookies, cookies-consent, cookies-policy, django, swing, swing-collection
- Language: Python
- Homepage: https://www.swing.dj
- Size: 85.9 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Citation: CITATION.cff
- Codeowners: .github/CODEOWNERS.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
Swing Cookie
Django Swing Collection
---
## Overview
Swing Cookie ...
---
## Usage in a Django Project
After installing the package, you can add swing_cookie to your INSTALLED_APPS and include the views in your project’s URLs.
``` python
# settings.py
INSTALLED_APPS = [
...
'swing_cookie',
...
]
`````` python
# urls.py
from django.urls import path
from swing_cookie.views import cookie_consent_viewurlpatterns = [
path('cookie-consent/', cookie_consent_view, name='cookie_consent'),
]
```---
## Colophon
Made with ❤️ by **[Scape Agency](https://www.scape.agency)**
### Contributing
Contributions are welcome! Please fork the repository and submit a pull request with your changes.
### License
This project is licensed under the BSD-3-Clause license. See the [LICENSE](LICENSE) file for details.
---