Re: [Tutor] is there a simple stand alone python app I can use on my Kindle fire?

2013-03-31 Thread Steven D'Aprano
On 01/04/13 12:18, ah wrote: Hello, I'm enjoying learning python, and would like to be able to study and practice on the go, using my kindle fire reader. (wifi enabled). Amazon does have an app, Qpython lite, but requires a live wifi connection to the internet to run. I'm looking for a sim

Re: [Tutor] pyqt4 set horizontal header item - solved

2013-03-31 Thread Phil
On 31/03/13 21:43, eryksun wrote: You can use setHorizontalHeaderItem(0, QTableWidgetItem('col 0'), and so on. It may be simpler to use setHorizontalHeaderLabels(['col 0', 'col 1', 'etc']). I have the answer (provided by a member of another list) and I was correct, it was something basic.

[Tutor] is there a simple stand alone python app I can use on my Kindle fire?

2013-03-31 Thread ah
Hello, I'm enjoying learning python, and would like to be able to study and practice on the go, using my kindle fire reader. (wifi enabled). Amazon does have an app, Qpython lite, but requires a  live wifi connection to the internet to run. I'm looking for a simple python app, stand alone tha

Re: [Tutor] pyqt4 set horizontal header item - extra info

2013-03-31 Thread Phil
On 31/03/13 21:43, eryksun wrote: You can use setHorizontalHeaderItem(0, QTableWidgetItem('col 0'), and so on. It may be simpler to use setHorizontalHeaderLabels(['col 0', 'col 1', 'etc']). Thanks Eryksun, I had already tried your suggestion last night and this is the result; "global name

Re: [Tutor] change of email

2013-03-31 Thread Joel Goldstick
On Sun, Mar 31, 2013 at 11:31 AM, Dipo Elegbede wrote: > Hi, > > I would like to have my email changed from delegb...@dudupay.com to > dipo.elegb...@dipoelegbede.com > > I have not in a long time used this email and as such would like all > correspondences sent to the new email so that I can resum

Re: [Tutor] create a facebook Application for linux desktop

2013-03-31 Thread Mark Lawrence
On 31/03/2013 17:37, chandan kumar wrote: Hello, I want to create a facebook application for Linux desktop. This application will download all the news feeds of all my friends to whom i am subscribed. It also helps to update status and upload photos. I donot know how to get started. I have search

Re: [Tutor] create a facebook Application for linux desktop

2013-03-31 Thread Joel Goldstick
On Sun, Mar 31, 2013 at 12:37 PM, chandan kumar < chandankumar.093...@gmail.com> wrote: > Hello, > I want to create a facebook application for Linux desktop. > This application will download all the news feeds of all my friends to > whom i am subscribed. > It also helps to update status and upload

Re: [Tutor] change of email

2013-03-31 Thread Chris “Kwpolska” Warrick
On Sun, Mar 31, 2013 at 5:31 PM, Dipo Elegbede wrote: > > Hi, > > I would like to have my email changed from delegb...@dudupay.com to > dipo.elegb...@dipoelegbede.com > [snip bullshit] > > ___ > Tutor maillist - Tutor@python.org > To unsubscribe or ch

[Tutor] change of email

2013-03-31 Thread Dipo Elegbede
Hi, I would like to have my email changed from delegb...@dudupay.com to dipo.elegb...@dipoelegbede.com I have not in a long time used this email and as such would like all correspondences sent to the new email so that I can resume my participation in the group. I sincerely hope this would be giv

[Tutor] create a facebook Application for linux desktop

2013-03-31 Thread chandan kumar
Hello, I want to create a facebook application for Linux desktop. This application will download all the news feeds of all my friends to whom i am subscribed. It also helps to update status and upload photos. I donot know how to get started. I have searched google, but not found any relevant inform

Re: [Tutor] Traceback problem

2013-03-31 Thread Alan Gauld
On 31/03/13 17:30, Murali Mannava wrote: and preventing me to go further. Can you please tell me what the problem is? File "C:\Python27\lib\ast.py", line 37, in parse return compile(source, filename, mode, PyCF_ONLY_AST) File "", line 0 ^ SyntaxError: unexpected EOF while pars

Re: [Tutor] Want to create a facebook Application for linux desktop

2013-03-31 Thread Alan Gauld
On 31/03/13 16:09, chandan kumar wrote: I have searched google, but not found any relevant information for this. Please tell me to how to get started to execute this using python. What is your background? Can you already program in Python? Can you program in other languages? Given your .sig I

Re: [Tutor] Traceback problem

2013-03-31 Thread Mark Lawrence
On 31/03/2013 17:30, Murali Mannava wrote: Hi, I am trying to execute a program and it's giving the following problem and preventing me to go further. Can you please tell me what the problem is? Thank you, Murali. Traceback (most recent call last): File "pwp_client.py", line 58, in RE

[Tutor] Traceback problem

2013-03-31 Thread Murali Mannava
Hi, I am trying to execute a program and it's giving the following problem and preventing me to go further. Can you please tell me what the problem is? Thank you, Murali. Traceback (most recent call last): File "pwp_client.py", line 58, in RESULTS = client.run_project(models[action] , are

[Tutor] Want to create a facebook Application for linux desktop

2013-03-31 Thread chandan kumar
Hello, I want to create a facebook application for Linux desktop. This application will download all the news feeds of all my friends to whom i am subscribed. It also helps to update status and upload photos. I donot know how to get started. I have searched google, but not found any relevant inform

Re: [Tutor] pyqt4 set horizontal header item - extra info

2013-03-31 Thread eryksun
On Sun, Mar 31, 2013 at 4:23 AM, Alan Gauld wrote: > On 31/03/13 08:30, Phil wrote: > >> self.tableWidget.setHorizontalHeaderItem (1, QTableWidgetItem *item) >> >> I have done this many years ago in C++ but I don't quite see how to get >> a QTableWidgetItem in Python. > > Presumably by instantiati

Re: [Tutor] pyqt4 set horizontal header item - extra info

2013-03-31 Thread Alan Gauld
On 31/03/13 08:30, Phil wrote: self.tableWidget.setHorizontalHeaderItem (1, QTableWidgetItem *item) I have done this many years ago in C++ but I don't quite see how to get a QTableWidgetItem in Python. Presumably by instantiating a TableWidgetItem class? But you will likely get better help o

Re: [Tutor] pyqt4 set horizontal header item - extra info

2013-03-31 Thread Phil
On 31/03/13 14:29, Phil wrote: Thank you for reading this. I want to set a table widget header based on its cell contents. The following sets all of the headers; self.tableWidget.setHorizontalHeaderLabels(["One", "Two", "Etc"]) However, self.setHorizontalHeaderItem ( 1, ["test"]) and self.set

[Tutor] pyqt4 set horizontal header item

2013-03-31 Thread Phil
Thank you for reading this. I want to set a table widget header based on its cell contents. The following sets all of the headers; self.tableWidget.setHorizontalHeaderLabels(["One", "Two", "Etc"]) However, self.setHorizontalHeaderItem ( 1, ["test"]) and self.setHorizontalHeaderItem ( 1, "test