Re: [BangPypers] Reg. current work in pycrypto

2011-10-27 Thread Saju Pillai
I use pycrypto for some symmetric ciphering and indirectly through paramiko (ssl lib) in my commercial product. No complaints yet. -srp On Mon, Oct 24, 2011 at 8:25 PM, Senthil Kumaran wrote: > Hello Nivedita, > > On Mon, Oct 24, 2011 at 09:12:55AM +0530, nivedita datta wrote: > > Can anyone tel

Re: [BangPypers] remove svn checkout folder

2011-10-27 Thread Sateesh Kumar
On Fri, Oct 21, 2011 at 12:37 PM, Shashidhar Paragonda < shashidha...@gmail.com> wrote: * Then i tried *shutil.rmtree(path/to/folder/) but here I am > facing permission denied error > > code : os.chmod(path/to/folder, 0777) >if os.access(path/to/folder, os.R_OK): >

[BangPypers] Dynamic choices for django modelformset

2011-10-27 Thread Asif Jamadar
How can I add dynamic choices for model formset? Suppose I have model called TestModel Class TestModel(models.Model) dropdown_field = models.CharField(max_length=70, blank=True, null=True, choices=' What to write here because my choices are dynamic') And from this model I w