0

I am writting a Python Windows-service, that downloads some files and stores them in folder chosen by user. The problem is that I want to inform user about new download completition, preferably with notification from here: https://gist.github.com/wontoncc/1808234

But somehow it doesn't work... End with error:

(0, 'Shell_NotifyIcon', 'No error message is available')

1 Answers1

1

Windows service hasn't interaction with the desktop. Therefore you can't do it directly. You can create some other windows application that will communicate with the service and provide you the UX.

Eugene
  • 1,865
  • 3
  • 21
  • 24