[Tutor] Creating a torrent file & associated tracker through a django web app

2012-11-20 Thread ashish makani
Hi Tutor folks I am trying to achieve the following : The user should log into a web app, select a file & the web app should generate a .torrent file & a private tracker(http://IP_ADDRESS:PORT_NUMBER/announce) for that .torrent file. Basically, i want to programmatically create a .torrent file,

Re: [Tutor] help

2012-11-20 Thread Matthew Ngaha
> Traceback (most recent call last): > File "Match finder GUI.py", line 87, in ? > app = Application(root) > File "\Match finder GUI.py", line 23, in __init__ > self.create_widgets() > File "Match finder GUI.py", line 61, in create_widgets > self.submit_bttn = Button(self, text =

Re: [Tutor] pyXML i Python2.6

2012-11-20 Thread Prasad, Ramit
Sreenivasulu wrote: > > Hi, > > Am unable to install pyXML in Ubuntu usig python2.6 > > Could you please help me > > Regards, > Sreenu Since you do not provide a link I am guessing you are referring to the very outdated package. You use the ElementTree class or the reputed third party module

Re: [Tutor] How to load python code only after program startup?

2012-11-20 Thread eryksun
On Mon, Nov 19, 2012 at 10:43 PM, Pete O'Connell wrote: > Hi I use a compositing program called Nuke which loads my custom modules on > start up. So if I have an error in my python code somewhere, Nuke won't open > and it throws a typical error which is easy enough to fix. > The problem I am runni

Re: [Tutor] How to load python code only after program startup?

2012-11-20 Thread Steven D'Aprano
On 20/11/12 14:43, Pete O'Connell wrote: Hi I use a compositing program called Nuke which loads my custom modules on start up. So if I have an error in my python code somewhere, Nuke won't open and it throws a typical error which is easy enough to fix. The problem I am running into is that when o