A Simple icon to replace the tkinter feather for your programs
Project description
create_icon 0.2.4
A Simple icon to replace the tkinter feather for your programs.
example:
#================================================================================
import os
from tkinter import Tk
root=Tk()
root.minsize(300,100)
# Add Icon to windows Titlebar if running Windows.
if os.name == 'nt':
homepath = os.path.expanduser('~')
tempFile = '%s\Caveman Software\%s' % (homepath, 'Icon\icon.ico')
if (os.path.exists(tempFile) == True):
root.wm_iconbitmap(default=tempFile)
else:
import create_icon
print('File Created')
root.wm_iconbitmap(default=tempFile)
root.mainloop()
#================================================================================
The above example allows the icon to be place in the menubar
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
create_icon-0.2.6.tar.gz
(45.3 kB
view hashes)
Built Distribution
Close
Hashes for create_icon-0.2.6-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b326a01ee8f668a5a6c60c93e68f1684cd3f042a8839f3f885b04917664fe069 |
|
MD5 | 82fa7e6a801caeb3a694859223e31352 |
|
BLAKE2b-256 | 7c92412ced0d5cc82e568d13b40b453f79190b1b38aac0fc878b7a6aaa3ae906 |