Skip to main content

Uma descrição do seu pacote

Project description

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.

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

tooltip-1.0.0.tar.gz (3.2 kB view hashes)

Uploaded Source

Built Distribution

tooltip-1.0.0-py3-none-any.whl (3.6 kB view hashes)

Uploaded Python 3

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