Re: How to display video files (mkv, wav, mp4 etc) within a TKinter widget?

2019-01-03 Thread Arie van Wingerden
: > Le 2/01/19 à 15:17, Arie van Wingerden a écrit : > > I found (mostly fairly old stuff) some questions and a lot of (apparently > > often not working) Python code. > > > > 1. does TKinter offer such thing out of the box? > > 2. or is there another way using TKi

How to display video files (mkv, wav, mp4 etc) within a TKinter widget?

2019-01-02 Thread Arie van Wingerden
I found (mostly fairly old stuff) some questions and a lot of (apparently often not working) Python code. 1. does TKinter offer such thing out of the box? 2. or is there another way using TKinter? 3. or do I need another GUI tool (e.g. QT) for this? TIA --

[issue30944] Python 32 bit install fails on Windows - BitDefender false positives

2017-07-17 Thread Arie van Wingerden
Arie van Wingerden added the comment: OK. Will contact BitDefender. 2017-07-17 14:55 GMT+02:00 Steve Dower <rep...@bugs.python.org>: > > Steve Dower added the comment: > > The best response is to notify Bitdefender so they can fix their > signatures. > > Python

[issue30944] Python 32 bit install fails on Windows - BitDefender false positives

2017-07-17 Thread Arie van Wingerden
Arie van Wingerden added the comment: Hi Louie, 1) no, I definitely used the right installer 2) BitDefender also interferes often when I compile Go programs So, in the end it is a real pain in the neck and I deinstalled it. Maybe other people can live with it, but it has cost me a lot of time

[issue30944] Python 32 bit install fails on Windows - BitDefender false positives

2017-07-17 Thread Arie van Wingerden
New submission from Arie van Wingerden: I discovered that BitDefender somehow blocks part of the installation of Python 3.x on Windows, resulting in a completely broken installation. I found this after having turned my system inside out ... @!#$%^&^%$#@ So solving it is either: deins

Re[3]: Re[2]: Loading error message

2016-03-14 Thread Arie van Wingerden
maandag, 14 maart 2016, 06:21PM +0100 van Oscar Benjamin <oscar.j.benja...@gmail.com>: >On 14 March 2016 at 17:15, Arie van Wingerden < xapw...@gmail.com > wrote: >> I've fixed the quoting below. Can you not top-post please Arie? >> On 14 March 2016 at 16:59,

Re[2]: Loading error message

2016-03-14 Thread Arie van Wingerden
maandag, 14 maart 2016, 06:04PM +0100 van Oscar Benjamin <oscar.j.benja...@gmail.com>: >I've fixed the quoting below. Can you not top-post please Arie? >On 14 March 2016 at 16:59, Arie van Wingerden < xapw...@gmail.com > wrote: >> 2016-03-14 15:59 GMT+01:00 Oscar

Re: Loading error message

2016-03-14 Thread Arie van Wingerden
Benjamin <oscar.j.benja...@gmail.com>: > On 14 March 2016 at 12:07, Arie van Wingerden <xapw...@gmail.com> wrote: > > that is weird. I am using Windows 10 and get exactly the same "warnings" > > when I run PyInstaller. > > But the update you mention is only av

Re: Loading error message

2016-03-14 Thread Arie van Wingerden
Hi, I could solve the problem on Windows 10 this way: - install Windows 10 stand alone sdk https://dev.windows.com/en-us/downloads/windows-10-sdk - add this dir to PATH: C:\Program Files (x86)\Windows Kits\10\Redist\ucrt\DLLs\x86 HTH, Arie 2016-03-14 13:07 GMT+01:00 Arie van Wingerden

Re: Loading error message

2016-03-14 Thread Arie van Wingerden
Hi Oscar, that is weird. I am using Windows 10 and get exactly the same "warnings" when I run PyInstaller. But the update you mention is only available for up to Windows 8.1. What about Windows 10 then?? Best, Arie 2016-03-13 19:52 GMT+01:00 Oscar Benjamin : >

Re: Loading error message

2016-03-14 Thread Arie van Wingerden
I saw similar errors when using PyInstaller. It has something to do with Windows 10 afaik. 2016-03-13 14:17 GMT+01:00 BobFtz--- via Python-list : > Hello > > I have just downloaded and installed a copy of the 3.5.1 programme but when > I come to run the programme I get

Re: PyQt5 not found from Python

2016-02-21 Thread Arie van Wingerden
Thx. Didn't realize that! -- https://mail.python.org/mailman/listinfo/python-list

PyQt5 not found from Python

2016-02-21 Thread Arie van Wingerden
Python 3.5.1 installed in default Windows folder here: C:\Users\Arie\AppData\Local\Programs\Python\Python35-32 PyQt5 installed - it creates a folder c:\Python34 In the Python REPL i try: from PyQt5 import QtCore Traceback (most recent call last): File "", line 1, in ImportError: No

Re: Late-binding of function defaults (was Re: What is a function parameter =[] for?)

2015-11-25 Thread Arie van Wingerden
>and even then, familiar to who? High school algebra students will at >first be baffled by "x = x + 1", an equation which is clearly >unsatisfiable. Some languages are "better" in that specific case in my opinion (mind te double quotes :-) - Ada and Pascal use := instead of = which is simpler

Re: Getting math scores (Dictionary inside dictionary)

2015-11-24 Thread Arie van Wingerden
2015-11-24 14:41 GMT+01:00 Marko Rauhamaa : > Mark Lawrence : > > > 1) I was being facetious. > > 2) How many times do people have to be asked not to top post here > > before they stop top posting? > > 3) I only have two things to say so this is

Re: Getting math scores (Dictionary inside dictionary)

2015-11-24 Thread Arie van Wingerden
print((results["gengyang"])["maths"]) 2015-11-24 12:04 GMT+01:00 Cai Gengyang : > results = { > "gengyang": { "maths": 10, "english": 15}, > "ensheng": {"maths": 12, "english": 10}, > "jordan": {"maths": 9, "english": 13} > } > > How do you get gengyang's maths

Re: Getting math scores (Dictionary inside dictionary)

2015-11-24 Thread Arie van Wingerden
Hi Mark, what use would that have? Please show your code ... 2015-11-24 13:15 GMT+01:00 Mark Lawrence : > On 24/11/2015 11:04, Cai Gengyang wrote: > >> results = { >>"gengyang": { "maths": 10, "english": 15}, >>"ensheng": {"maths": 12, "english": 10}, >>