A Simple icon to replace the tkinter feather for your programs
Reason this release was yanked:
Bad Readme.md
Project description
create_icon 0.1.0
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.1.1b0.tar.gz
(45.2 kB
view hashes)
Built Distribution
Close
Hashes for create_icon-0.1.1b0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d22678476266c7d535a9b4a12b207693abc9298b600560da5d45ba457d7d3e9 |
|
MD5 | de9236b4ac16f80f8c20082ee9be2a92 |
|
BLAKE2b-256 | d954044653385aae1f66d4b2796c21299c2104c3ae5835f2ffb3853e2de77323 |