gert schrieb: > open(os.path.join(os.path.dirname(__file__),'../www/bin/picture.png'), > 'rb') > how do you do this on windows (py3) so it still works on linux ? os.path.join("..", "www", "bin", "picture.png") Or use os.sep. Diez