Re: [BangPypers] How to do RSA encryption in python

2010-11-30 Thread Zubin Mithra
Hello, > Dear all, > I am searching for doing rsa encryption in python. Please give me a method > to do RSA key generation, encryption and decryption. > > http://stuvel.eu/rsa seems good. zm ___ BangPypers mailing list BangPypers@python.org http://mail

Re: [BangPypers] Beginner help

2010-10-02 Thread Zubin Mithra
> > I heard about python and found that it was very simple to code. > I would like to know any IDE's in which i can code python in windows There are loads of options available. I'd recommend notepad++(great text editor with lots of plugins) and Eclipse(IDE). zm _

[BangPypers] videos upload

2010-09-26 Thread Zubin Mithra
Hey everyone, Could someone here tell me a date by which the Pycon videos might be uploaded online? Thanks in advance, Zubin Mithra ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] diffrerence between lambda function and ordinary one

2010-08-06 Thread Zubin Mithra
> > > i was writing some basic code . for understanding lambda functions , but > couldnt understand the difference between a lambda function and an ordinary > function. > > for example > > >>>def f (x): return x**2 > ... > >>> print f(8) > >>> 64 > >>> g = lambda x: x**2 > >>> > >>> print g(8) > >>

Re: [BangPypers] pycon hacksessions?

2010-08-01 Thread Zubin Mithra
Hi Baiju, Hi, > > I am interested to sprint on the project I am working on ( > http://bluebream.zope.org ) . But we don't have other active > contributors from India. I can also mentor, if anyone interested. So, > if anyone interested, please contact me offlist. You can also add > your name her

Re: [BangPypers] pycon hacksessions?

2010-08-01 Thread Zubin Mithra
On Sun, Aug 1, 2010 at 1:57 PM, Senthil Kumaran wrote: > On Sun, Aug 01, 2010 at 01:16:04PM +0530, Zubin Mithra wrote: > > > > > Cool. I was wondering if we could also have a small session to port > packages > > over to Python3k. I had a small discussion at SO about

Re: [BangPypers] pycon hacksessions?

2010-08-01 Thread Zubin Mithra
On Sun, Aug 1, 2010 at 1:03 PM, Noufal Ibrahim wrote: > Zubin Mithra writes: > > > [...] > > > I was wondering if any of the speakers would be interested in taking > > the lead. > > [...] > > I'm not sure. I do know that Diptanu who proposed the ra

Re: [BangPypers] pycon hacksessions?

2010-08-01 Thread Zubin Mithra
On Sun, Aug 1, 2010 at 1:04 PM, Senthil Kumaran wrote: > On Sun, Aug 01, 2010 at 12:00:33PM +0530, Zubin Mithra wrote: > > > > I was wondering if any of the speakers would be interested in taking the > > lead. > > If you would like hack around. Bring in your laptop a

Re: [BangPypers] pycon hacksessions?

2010-07-31 Thread Zubin Mithra
On Sun, Aug 1, 2010 at 10:06 AM, Noufal Ibrahim wrote: > Zubin Mithra writes: > > > [...] > > > Is there anyway a sprint could be hosted during the conference? > > > > There is a lot of manpower in a conference such as Pycon-India and a lot > > could be ac

Re: [BangPypers] pycon hacksessions?

2010-07-31 Thread Zubin Mithra
> > > > PSF has opened up a program for organizing and sponsoring > "sprints" related to Python language in an official manner > with the blessings of PSF. > > I will try to go on stage and give a few words regarding > this initiative and a few plans on how to take advantage > of this from our side

Re: [BangPypers] pycon hacksessions?

2010-07-31 Thread Zubin Mithra
On Sun, Aug 1, 2010 at 12:27 AM, Jeffrey Jose wrote: > As a person whos new to the whole scene, when you say "Hacksessions" what > is it exactly ? > > And what happens in a Hacksession? > What I meant was that it would be really nice to work on something towards the end of the whole event or the

[BangPypers] pycon hacksessions?

2010-07-22 Thread Zubin Mithra
Hey everyone, I could'nt find any info on whether or not hack sessions are going to be conducted as part of Pycon. Did I miss something(in the case that we *are *having them) or is there a reason we could'nt have them? Cheers, zm ___ BangPypers mailing

Re: [BangPypers] Help needed on reviewing my presentation for pycon.

2010-06-27 Thread Zubin Mithra
On Mon, Jun 28, 2010 at 10:25 AM, Shiv Shankar wrote: > But I know the limitations of threads in python, how to break it and where > >> twisted comes in. > >> > >> Twisted is not just a solution for threads and more over threads in > > python are problematic (?) at CPU level and not at IO level

Re: [BangPypers] Help needed on reviewing my presentation for pycon.

2010-06-26 Thread Zubin Mithra
Hello Shiv, On Sat, Jun 26, 2010 at 8:12 PM, Shiv Shankar wrote: > Guys, > > The below mentioned is an overview of the contents included in the > presentation I would like to present in this years pycon. Could you guys > please look through it and let me know if you will get benefited from such

[BangPypers] missing something

2010-06-19 Thread Zubin Mithra
Hi everyone, I think I`m missing something very basic or have a very basic concept understood the wrong way, so I`d like to have some help here. http://paste.pocoo.org/show/227288/ The problem is that the second call to _Mixin2to3.run_2to3() does not work. How do I address the issue? Thanks in

[BangPypers] 2to3 fixers

2010-06-11 Thread Zubin Mithra
Hey everyone, I just discovered that the following construct does not work in Py3k. >>> string.maketrans('-', '_') However, the following works, >>> str.maketrans('-', '_') When i try to convert a python module containing the above construct, it does not get modified in a way such that it coul

[BangPypers] 2to3 conversion

2010-06-09 Thread Zubin Mithra
Hey everyone, I got this traceback while running 2to3 on a file.( http://paste.pocoo.org/show/223468/). The file can be viewed here at (http://paste.pocoo.org/show/223469/). Any clue on how to resolve the problem? Thanks in advance, Zubin ___ BangPype

Re: [BangPypers] PyAutoRun

2010-02-26 Thread Zubin Mithra
Thank you for your review. However, i assume you did not go through the README or the TODO file. Nevertheless, necessary corrections have been made. Thank you. cheers!!! Zubin On Fri, Feb 26, 2010 at 4:58 PM, Senthil Kumaran wrote: > On Fri, Feb 26, 2010 at 03:47:15PM +0530, Zubin Mit

[BangPypers] PyAutoRun

2010-02-26 Thread Zubin Mithra
Hello, I have been using python for quite some time; however this is the first python project i have worked on. The code is hosted at http://github.com/zubin71/PyAutoRun The code needs re-factoring and feature additions; i have put up a TODO list there too. It`d be great if anyone could work on

Re: [BangPypers] Calling Python script from C++.

2010-02-25 Thread Zubin Mithra
gt; argument to this python file from c++ file. > > Could you tell me how can I pass arguments to python file? > > > Thanks, > Lakshmi. > > -Original Message- > From: bangpypers-bounces+lakshmi.chowdam=bt@python.org > [mailto:bangpypers-bounces+lakshmi.chow

Re: [BangPypers] Calling Python script from C++.

2010-02-25 Thread Zubin Mithra
could you give us a few more details? the deployment OS? cheers!!! Zubin On Thu, Feb 25, 2010 at 12:51 PM, wrote: > Hi, > > > > We have a requirement of Calling Python script from C++. > > > > So, For this we are trying to pass entire python script(Script has  both > method implementation an

Re: [BangPypers] Could not connect to freenode IRC

2010-02-12 Thread Zubin Mithra
disconnect and re-connect to the internet connection. you get a new IP and you can log in. cheers!!! Zubin On Sat, Feb 13, 2010 at 10:41 AM, Kenneth Gonsalves wrote: > On Saturday 13 Feb 2010 10:34:55 am BR!j!TH wrote: > > When I tried to connect to IRC server I am getting this > > > > *Di

[BangPypers] InCTF notification

2010-01-25 Thread Zubin Mithra
Reply to all Forward Reply by chat Filter messages like this Print Add Mail Delivery Subsystem to Contacts list Delete this message Report phishing Report not phishing Show original Show in fixed width font Show in variable width font Message text garbled? Why is this spam/nonspam? Hey, Named InCT

[BangPypers] Little help

2009-12-13 Thread Zubin Mithra
ion can be seen here http://paste.pocoo.org/show/156891/ and the latest version of pyroom i am referring to can be obtained from https://launchpad.net/pyroom any ideas on why this happens? thnkx in advance Zubin Mithra ___ BangPypers mailing list BangPy