/tooltip

A simple tooltip for tkinter widgets.

Primary LanguagePythonMIT LicenseMIT

Tooltip for labels, entries, buttons and more

PyPI version License Downloads

A simple tooltip for tkinter widgets.

Installation

pip install tooltip

Usage

ToolTip(widget, text='Widget info', justify='left', width=None, background=None, foreground=None):

Example

import tkinter as tk
from tooltip import ToolTip

root = tk.Tk()

button = tk.Button(root, text='Button')
button.pack(pady=20)
ToolTip(button, text='This is a button and you can describe it here. You can also add a lot of text to see how it will appear and even use bright colors', width=50, justify='center', background='yellow', foreground='blue')

label = tk.Label(root, text='Label')
label.pack(pady=20)
ToolTip(label, 'Descriptions can be discreet too')

root.mainloop()

Authors

License

This project is licensed under the MIT License - see the LICENSE file for details.