Skip to main content

tkinter-toggle

A tkinter toggle widget is a reusable UI component that lets users instantly switch between two states (like On/Off) by dynamically updating the UI and executing code upon interaction.

Installation

It is recommended to install Python packages inside a virtual environment to prevent dependency conflicts.

1. Create and activate a virtual environment (Optional but recommended):

# On Windows
python -m venv venv
venv\Scripts\activate

# On macOS/Linux
python3 -m venv venv
source venv/bin/activate

2. Install the package:

pip install tkinter-toggle

Quick Start

Import the toggle widget and attach it to your Tkinter window. Don't forget to call .pack(), .grid(), or .place() to display it!

import tkinter as tk
from tkinter_toggle import tkToggle

def on_click(event):
    print(event.value)

root = tk.Tk()

# Create the instance
toggle = tkToggle(root, default=False, size=30, bg="red", command=on_click)

# Show the toggle widget on the window
toggle.pack()

root.mainloop()

Configuration

When initializing tkToggle(master, ...), you can pass several optional arguments to customize its behavior and appearance.

Arguments

Argument Type Default Optional Description
default bool False Yes The initial state or value of the toggle widget.
size int 20 Yes The dimensions (width/height) of the widget.
bg str "#0000ff" Yes Background color (hex code or Tkinter color name).
fg str "#ffffff" Yes Thumb color (hex code or Tkinter color name).
off_bg str "#aaaaaa" Yes Toggle off background color (hex code or Tkinter color name).
off_fg str same as fg Yes Toggle off Thumb color (hex code or Tkinter color name).
command Callable "" Yes Function to execute when the user interacted with toggle widget.

Note: The first argument must always be the parent window or frame (master).

Methods

Once initialized, you can interact with the widget programmatically using its built-in methods:

  • set_value(value: bool): Updates the current state of the toggle widget to the given boolean value.
  • get_value() -> bool: Returns the current state of the toggle widget.
  • toggle(): Reverse the current state of the toggle widget.
  • config(bg: String = None, size: int = None, command: Callable = None): Modify size, background or command (function to invoke when the widget action occurs) of the toggle widget.

Full Example

Here is a complete working example. You can also view this code directly in the repository at tests/example.py.

import tkinter as tk
from tkinter_toggle import tkToggle

def on_click(event):
    print(event.value)

# Initialize the main window
root = tk.Tk()
root.geometry("300x200+100+100")
root.title("Toggle Demo")

# Create and configure the widget
toggle = tkToggle(
    root, 
    default=False, 
    size=30, 
    bg="green", 
    command=on_click
)

# Display the toggle widget
toggle.pack(pady=20)

# Modify the value programmatically
toggle.toggle()

# Configure this toggle widget
toggle.config(bg="blue", size=50)

# Run the application
root.mainloop()

PyPI Project

The official package registry, release history, and download statistics are available on the Python Package Index (PyPI):
https://pypi.org/project/tkinter-toggle/

License

This project is licensed under the GNU Lesser General Public License (LGPL). See the COPYING.LESSER and COPYING files for full details.


Download files

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

Source Distribution

tkinter_toggle-1.0.0.tar.gz (17.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tkinter_toggle-1.0.0-py3-none-any.whl (18.7 kB view details)

Uploaded Python 3

File details

Details for the file tkinter_toggle-1.0.0.tar.gz.

File metadata

  • Download URL: tkinter_toggle-1.0.0.tar.gz
  • Upload date:
  • Size: 17.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for tkinter_toggle-1.0.0.tar.gz
Algorithm Hash digest
SHA256 e67ed6d03966e11ce567a491b28fa99da8683891e5550139a53af39de17b3e98
MD5 2eccc53966373305094e6a1acce46847
BLAKE2b-256 46e1f794e1da865ab43c937e74e6d2a9b501bd7cd042f71d8d5939b322428793

See more details on using hashes here.

Provenance

The following attestation bundles were made for tkinter_toggle-1.0.0.tar.gz:

Publisher: publish.yml on akarshit-1609/tkinter-toggle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tkinter_toggle-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: tkinter_toggle-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 18.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for tkinter_toggle-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 72545ed204f826c7f1325b7cc99614798aa05c2a941b5c541abce945393d4322
MD5 be083e89a06c03b3f80973488ce52fb2
BLAKE2b-256 857227ed89a1e0edbb95eeed4799b4c26013c6a2c6c2904d6da8468a77ecc7a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tkinter_toggle-1.0.0-py3-none-any.whl:

Publisher: publish.yml on akarshit-1609/tkinter-toggle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

1.0.0 This release

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page