Re: Keypress Input

2015-06-14 Thread John McKenzie
Thank to the others who joined in and posted replies. Michael, your assumption is correct. To quote my original post, "and I want this working on a Raspberry Pi." Doing a superficial look at curses and getch it looks excessively complicated. I was under the impression it was not multi-platfo

Re: Keypress Input

2015-06-14 Thread John McKenzie
from Tkinter import * from blinkstick import blinkstick led = blinkstick.find_first() timered = 0 timeyellow = 0 timeblue = 0 colour = None root = Tk() root.title('eFlag 1') def red1(event): colour = 1 def yellow1(event): colour = 2 def blue1(event): colour = 3 root.bind_all(

Re: PyCon 2015 - were all the talks recorded?

2015-06-14 Thread Chris Angelico
On Sun, Jun 14, 2015 at 10:35 PM, Ned Batchelder wrote: > On Sunday, June 14, 2015 at 6:25:08 AM UTC-4, Chris Angelico wrote: >> Geography prevented me from attending PyCon 2015, but I would have >> loved to see some of the talks, particularly the one by Paul >> Hildebrandt of Disney [1]. There's

Re: PyCon 2015 - were all the talks recorded?

2015-06-14 Thread Ned Batchelder
On Sunday, June 14, 2015 at 6:25:08 AM UTC-4, Chris Angelico wrote: > Geography prevented me from attending PyCon 2015, but I would have > loved to see some of the talks, particularly the one by Paul > Hildebrandt of Disney [1]. There's a Youtube channel for "PyCon 2015" > [2], but searching by spe

PyCon 2015 - were all the talks recorded?

2015-06-14 Thread Chris Angelico
Geography prevented me from attending PyCon 2015, but I would have loved to see some of the talks, particularly the one by Paul Hildebrandt of Disney [1]. There's a Youtube channel for "PyCon 2015" [2], but searching by speaker's name, "Disney", and "Inside the Hat" brought no results. Must I assum

Re: PYTHON QUESTION

2015-06-14 Thread Laurent Pointal
adebayo.abra...@gmail.com wrote his student exercise as raw text: > Help with this problem! > > Temperature converter > Description > > Write two functions that will convert temperatures back and forth from the > Celsius and Fahrenheit temperature scales. The formulas for making the > conversion

Re: Trying to configure Apache and Python 2.7 on Red Hat I get 403 Forbidden

2015-06-14 Thread zhou weitao
selinux is causing this, I guess. Please try run *setenforce 1* to bypass it firstly. If it works then google the related configuration. from ex-redhatter 2015-06-12 20:51 GMT+08:00 Néstor Boscán : > Hi > > I've been trying to configure Apache and Python 2.7 on Red Hat. I've tried > the differe

Re: Is there a utility to tally function calls from other files?

2015-06-14 Thread Laura Creighton
In a message of 14 Jun 2015 02:53:15 +, "Steven D'Aprano" writes: >Well, yes, but since IDLE already contains that script, why not just use >IDLE? I don't know any way to tell Idle to run in the background, generate this result, and hand it to me as a list, or a csv or whatever. Have I been