[Tutor] saving webpage as webarchive

2016-02-29 Thread Benjamin Fishbein
This seems like it should be simple, but I can’t find any answer with the docs or google. I’m on a Mac. OSX Yosemite 10.10.5 I want to save a webpage as a webarchive, and not just get the text. I hope there’s a way to do it without saving all of the images separately. And even if I do have to down

Re: [Tutor] pyqt __del__ race conditions in subclassed form

2016-02-29 Thread Alan Gauld
On 29/02/16 16:22, CMG Thrissur wrote: > This below given code is giving a race condition, i.e. sometimes gives > the result as expected, sometimes gives error, sometimes just does > nothing. Don't use the __del__ method for that kind of code, put it in the close event handler. You don't know w

Re: [Tutor] Help with Python code

2016-02-29 Thread Alan Gauld
On 29/02/16 17:31, Donald Woolfolk wrote: > Hello, > > I am new to Python 3.5 and I am writing code to get data > from a session api call and load that data into a csv file > or a MySQL database. That's great, we can help with that, but... > I am able to make the session call and also to conne

Re: [Tutor] Missing Standard Libraries on Python 3.5 for Mac

2016-02-29 Thread Jack Potrashitel
I use anaconda . Since i dont have peoblems with libraries вторник, 3 ноября 2015 г. пользователь Zachary Ware написал: > Hi Andrew, > > On Tue, Nov 3, 2015 at 11:20 AM, Andrew Machen > > wrote: > > Hi, > > > > I am new to Python, and I am trying to use a Python Standard Library, > namely ‘unicod

[Tutor] Help with Python code

2016-02-29 Thread Donald Woolfolk
Hello, I am new to Python 3.5 and I am writing code to get data from a session api call and load that data into a csv file or a MySQL database. I am able to make the session call and also to connect to the MySQL db, but I am not able to convert the result (JSON) data. I would like assistance w

[Tutor] pyqt __del__ race conditions in subclassed form

2016-02-29 Thread CMG Thrissur
Hello, This below given code is giving a race condition, i.e. sometimes gives the result as expected, sometimes gives error, sometimes just does nothing. It is part of a subclassed qt form which i am using as main dialog. This behaviour occurs when i close the dialog whereby ending the appl