On 2014-11-25 13:58, Juan Christian wrote:
On Mon Nov 24 2014 at 11:56:31 PM Michael Torrie <[email protected] <mailto:[email protected]>> wrote: Looks alright. Does it work?Well, no =/ First I had to remove the multiple inheritance, because Qt doesn't allow that, so I removed the QObject. Second, just for testing I'm calling the module directly using: timer = QTimer() timer.start(5000) def output_slot(): outpost = Outpost('123456') outpost.start() MainWindow.vlay.addWidget(create_box(outpost.info_a + " : " + outpost.info_b)) timer.timeout.connect(output_slot) But I'm getting this: Traceback (most recent call last): File "D:\Documents\PyCharm\Trader\Trader\core\outpost.py", line 18, in run with soup.select('div.stat_box div.value')[0].get_text().replace(',', '') as trades, \ AttributeError: __exit__
I think that the problem there is that strings don't have an __exit__ method. -- https://mail.python.org/mailman/listinfo/python-list
