{"id":23303569,"url":"https://github.com/nenotriple/tktooltip","last_synced_at":"2025-06-12T22:06:17.193Z","repository":{"id":258731149,"uuid":"874490991","full_name":"Nenotriple/TkToolTip","owner":"Nenotriple","description":"Add customizable tooltips to any tkinter widget.","archived":false,"fork":false,"pushed_at":"2025-05-19T22:43:50.000Z","size":43,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-19T23:38:13.613Z","etag":null,"topics":["tkinter","tkinter-gui","tooltips","widget-library"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Nenotriple.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-10-17T23:34:20.000Z","updated_at":"2025-05-19T22:43:53.000Z","dependencies_parsed_at":"2025-01-20T17:20:04.406Z","dependency_job_id":"0b7fc08f-63ad-4eb1-83c5-38b857441585","html_url":"https://github.com/Nenotriple/TkToolTip","commit_stats":null,"previous_names":["nenotriple/tktooltips"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Nenotriple/TkToolTip","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nenotriple%2FTkToolTip","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nenotriple%2FTkToolTip/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nenotriple%2FTkToolTip/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nenotriple%2FTkToolTip/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Nenotriple","download_url":"https://codeload.github.com/Nenotriple/TkToolTip/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nenotriple%2FTkToolTip/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259539135,"owners_count":22873341,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["tkinter","tkinter-gui","tooltips","widget-library"],"created_at":"2024-12-20T11:12:58.913Z","updated_at":"2025-06-12T22:06:17.169Z","avatar_url":"https://github.com/Nenotriple.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TkToolTip\n\n\nAdd customizable tooltips to any Tkinter widget.\n\n\n\u003cbr\u003e\n\n\n# 💾 Install\n![Static Badge](https://img.shields.io/badge/git-Python_3.10%2B-green)🚩\n\n1) Install in your enviroment:\n\n  - `pip install git+https://github.com/Nenotriple/TkToolTip.git`\n\n2) Import within your python script:\n\n  - `from TkToolTip.TkToolTip import TkToolTip as Tip`\n\n\n\u003cbr\u003e\n\n\n# 📝 Usage:\n\nA) Directly create a tooltip:\n\n1) ```Tip.create(widget, text=\"example\")```\n\nB) Create and store a tooltip for later configuration:\n\n1) ```tooltip = Tip.create(widget, text=\"example\")```\n\n2) ```tooltip.config(text=\"Example!\")```\n\n\n\u003cbr\u003e\n\n\n# 💡 Parameters\n\n`widget` : `tkinter.Widget`\n- The widget to attach the tooltip to\n\n`text` : `str, optional`\n- Tooltip text (default is an empty string)\n\n`delay` : `int, optional`\n- Delay before showing the tooltip in milliseconds (default is `0`)\n\n`padx` : `int, optional`\n- X-offset of the tooltip from the origin (default is `0`)\n\n`pady` : `int, optional`\n- Y-offset of the tooltip from the origin (default is `0`)\n\n`ipadx` : `int, optional`\n- Horizontal internal padding (default is `0`)\n\n`ipady` : `int, optional`\n- Vertical internal padding (default is `0`)\n\n`state` : `str, optional`\n- Tooltip state, \"normal\" or \"disabled\" (default is `None`)\n\n`bg` : str, `optional`\n- Background color (default is `\"#ffffee\"`)\n\n`fg` : str, `optional`\n- Foreground (text) color (default is `\"black\"`)\n\n`font` : `tuple, optional`\n- Font of the text (default is `(\"TkDefaultFont\", 8, \"normal\")`)\n\n`borderwidth` : `int, optional`\n- Border width (default is `1`)\n\n`relief` : `str, optional`\n- Border style (default is `\"solid\"`)\n\n`justify` : `str, optional`\n- Text justification (default is `\"center\"`)\n\n`wraplength` : `int, optional`\n- Maximum line width for text wrapping (default is `0`, which disables wrapping)\n\n`fade_in` : `int, optional`\n- Fade-in time in milliseconds (default is `125`)\n\n`fade_out` : `int, optional`\n- Fade-out time in milliseconds (default is `50`)\n\n`origin` : `str, optional`\n- Origin point of the tooltip, `\"mouse\"` or `\"widget\"` (default is `\"mouse\"`)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnenotriple%2Ftktooltip","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnenotriple%2Ftktooltip","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnenotriple%2Ftktooltip/lists"}