Skip to main content

Streamlit cookies controller

Project description

Welcome to Streamlit Cookie Controller 🍪

PyPI Download GitHub GitHub license GitHub issues GitHub pull requests

Control client browser cookie for the site.

What is Streamlit Cookie Controller?

streamlit-cookies-controller let you

  • get cookie(s)
  • set cookie
  • remove cookie

from/to the client browser. It use universal-cookie package to access the cookies.

Installation

Open a terminal and run:

pip install streamlit-cookies-controller

Quickstart

Create a new file example.py

import streamlit as st
from streamlit_cookies_controller import CookieController

st.set_page_config('Cookie QuickStart', '🍪', layout='wide')

controller = CookieController()

# Set a cookie
controller.set('cookie_name', 'testing')
st.write(st.session_state)

# Get all cookies
cookies = controller.getAll()
st.write(cookies)

# Get a cookie
cookie = controller.get('cookie_name')
st.write(cookie)

# Remove a cookie
controller.remove('cookie_name')
st.write(st.session_state)

Run the streamlit app

streamlit run example.py

Change Log

Version 0.0.1

  • Initial release

Version 0.0.2

  • return None when there is no cookie with the given name instead of throw error

Version 0.0.3

Remove Test1 in frontend due to it is flikkering on streamlit v1.32.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

streamlit-cookies-controller-0.0.4.tar.gz (406.3 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file streamlit-cookies-controller-0.0.4.tar.gz.

File metadata

File hashes

Hashes for streamlit-cookies-controller-0.0.4.tar.gz
Algorithm Hash digest
SHA256 f5df2543de858f1585dcb6e90f58f38aafbf313ee8e237c64663b2d9761583cc
MD5 5ae1c4daea4f8156229c0b33a3c1a7a0
BLAKE2b-256 b0c87caf505d62faeb8c0f6e6b74b554e1c2b0c3ca46c0a39250445c574a5a18

See more details on using hashes here.

File details

Details for the file streamlit_cookies_controller-0.0.4-py3-none-any.whl.

File metadata

File hashes

Hashes for streamlit_cookies_controller-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 f97fec6acdeee9cb9e16da25c3fc91d404b5b0ddced87c1d9fa9c62f65ca3251
MD5 ca4d5efc6a8386e0670346745d258f30
BLAKE2b-256 02c63bbdfecf5009943bcb62d37e3fd4b3fe45e87137e449a50e3025170bc9f7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page