[BangPypers] Mailing list etiquette

2014-08-04 Thread Rajiv Subramanian M
Good one! Thanks for sharing. -- Rajiv M Software Engineer. *DoubleSpring Media (P) Ltd.* #15/1 Robertson Road, Frazer Town, Bangalore 05, IND. Office: +91-80-40917126, Mobile: +91 7411 129611, Skype: rajiv.m1991 , Web: www.doublespring.com.

Re: [BangPypers] Mailing list etiquette

2014-08-04 Thread Jeffrey Jose
I agree with almost all of it, except for these 2. 1. No HTML emails 2. No attachments. These are surely relics from the past. I dont see any reason why these need to be valid anymore. If your answer to this is "my favorite ncurses client cant read it" it doesnt count. -jeff On Mon, Aug 4, 201

[BangPypers] Mobile App Development using Python

2014-08-04 Thread Jins Thomas
Hi I quickly checked archive, Couldn't find much... Humble request to some experts to throw some lights on Mobile App Development using Python Thanks Jins Thomas ___ BangPypers mailing list BangPypers@python.org https://mail.python.org/mailman/listin

Re: [BangPypers] Mailing list etiquette

2014-08-04 Thread Noufal Ibrahim KV
On Mon, Aug 04 2014, Jeffrey Jose wrote: > I agree with almost all of it, except for these 2. > > 1. No HTML emails I don't like HTML emails because usual textual matter doesn't need it. It simply bloats things and if the renderer your client is using doesn't have some feature that the sender use

[BangPypers] how to override sys.stdin

2014-08-04 Thread Nitin Kumar
Hi All, is there a way i can override raw_input or input function. I tried with below code but getting error import sys class xyz(object): def readline(self): print 'from fn readline',var sys.stdin = xyz >>> raw_input('hi:') hi: Traceback (most recent call last): File "", line 1,

Re: [BangPypers] how to override sys.stdin

2014-08-04 Thread Dhruv Baldawa
On Mon, Aug 4, 2014 at 2:38 PM, Nitin Kumar wrote: > def readline(self): > print 'from fn readline',var > Where are you getting 'var' from? Shouldn't the method read as def readline(self, var)? -- Dhruv Baldawa (http://www.dhruvb.com) _

Re: [BangPypers] Mobile App Development using Python

2014-08-04 Thread Saurabh Minni
You should have a look at Kivy [http://kivy.org/] A lot of things are detailed in there. Thanks, Saurabh On Mon, Aug 4, 2014 at 1:55 PM, Jins Thomas wrote: > Hi > > I quickly checked archive, Couldn't find much... > > Humble request to some experts to throw some lights on Mobile App > Develop

Re: [BangPypers] Mailing list etiquette

2014-08-04 Thread Kushal Das
On Mon, Aug 4, 2014 at 1:29 PM, Jeffrey Jose wrote: > I agree with almost all of it, except for these 2. > > 1. No HTML emails > 2. No attachments. > Most of the FOSS project mailing lists follow these simple rules. > These are surely relics from the past. I dont see any reason why these need > t

Re: [BangPypers] how to override sys.stdin

2014-08-04 Thread Noufal Ibrahim KV
On Mon, Aug 04 2014, Nitin Kumar wrote: > Hi All, > > is there a way i can override raw_input or input function. Create a function like def my_input(prompt): # Your code here and then assign it to raw_input raw_input = my_input. [...] -- Cordially, Noufal http://nibrahim.net.in _

[BangPypers] Flipped workshop on Webdev with Python/Django

2014-08-04 Thread Parul Gupta
Hi all, Bangalore Django User group and SlideRule are jointly organizing a workshop for learning web-development with Python and Django Web development needs a vast set of skills, including databases, frontend, backend and

Re: [BangPypers] how to override sys.stdin

2014-08-04 Thread Nitin Kumar
thats a typo error. in simple term my question would be: How to override sys.stdin. Nitin K On Mon, Aug 4, 2014 at 2:44 PM, Dhruv Baldawa wrote: > On Mon, Aug 4, 2014 at 2:38 PM, Nitin Kumar wrote: > > > def readline(self): > > print 'from fn readline',var > > > > Where are you g

Re: [BangPypers] how to override sys.stdin

2014-08-04 Thread Noufal Ibrahim KV
On Mon, Aug 04 2014, Nitin Kumar wrote: > thats a typo error. > > in simple term my question would be: How to override sys.stdin. [...] The StringIO module gives you file like objects into which you can put data. They might work as substitues for sys.std* -- Cordially, Noufal http://nibrahim.n

Re: [BangPypers] how to override sys.stdin

2014-08-04 Thread Rohit Chormale
Hi Nitin, Do u mean redirecting Standard IO streams? On Mon, Aug 4, 2014 at 3:08 PM, Noufal Ibrahim KV wrote: > On Mon, Aug 04 2014, Nitin Kumar wrote: > > > thats a typo error. > > > > in simple term my question would be: How to override sys.stdin. > > [...] > > The StringIO module gives you

[BangPypers] Creating a Password protected Excel sheet

2014-08-04 Thread Anil Tammineni
Hi All, I want to write data into an excel file and make this excel file password protected. I am able to read/write data in to this excel file (.xlsx) using openpyxl. How can we make this document password protected using openpyxl or any other library? Any pointer would be helpful. T

Re: [BangPypers] how to override sys.stdin

2014-08-04 Thread Rohit Chormale
It might work, sys.stdin = open(sys.stdin.fileno(), 'r', ) or Simply for replacing iostream, sys.stdin = open( ,'r') On Mon, Aug 4, 2014 at 3:48 PM, Rohit Chormale wrote: > > Hi Nitin, > > Do u mean redirecting Standard IO streams? > > > On Mon, Aug 4, 2014 at 3:08 PM, Noufal Ibrahim KV >

Re: [BangPypers] Mobile App Development using Python

2014-08-04 Thread Gora Mohanty
On 4 August 2014 14:45, Saurabh Minni wrote: > > You should have a look at Kivy [http://kivy.org/] > > A lot of things are detailed in there. Seconded. Incidentally, one of the core Kivy developers is from Delhi, and frequents the Delhi/NCR Python group. Regards, Gora ___

Re: [BangPypers] Mailing list etiquette

2014-08-04 Thread Anand Chitipothu
On Mon, Aug 4, 2014 at 2:23 PM, Noufal Ibrahim KV wrote: > On Mon, Aug 04 2014, Jeffrey Jose wrote: > > > I agree with almost all of it, except for these 2. > > > > 1. No HTML emails > > I don't like HTML emails because usual textual matter doesn't need > it. It simply bloats things and if the re

Re: [BangPypers] Mailing list etiquette

2014-08-04 Thread Jeffrey Jose
On Mon, Aug 4, 2014 at 8:13 PM, Anand Chitipothu wrote: > > On Mon, Aug 4, 2014 at 2:23 PM, Noufal Ibrahim KV > wrote: > >> On Mon, Aug 04 2014, Jeffrey Jose wrote: >> >> > I agree with almost all of it, except for these 2. >> > >> > 1. No HTML emails >> >> I don't like HTML emails because usual

Re: [BangPypers] Mailing list etiquette

2014-08-04 Thread Jeffrey Jose
On Mon, Aug 4, 2014 at 2:23 PM, Noufal Ibrahim KV wrote: > On Mon, Aug 04 2014, Jeffrey Jose wrote: > > > I agree with almost all of it, except for these 2. > > > > 1. No HTML emails > > I don't like HTML emails because usual textual matter doesn't need > it. It simply bloats things and if the re

Re: [BangPypers] Mailing list etiquette

2014-08-04 Thread Jeffrey Jose
On Mon, Aug 4, 2014 at 8:13 PM, Anand Chitipothu wrote: > > On Mon, Aug 4, 2014 at 2:23 PM, Noufal Ibrahim KV > wrote: > >> On Mon, Aug 04 2014, Jeffrey Jose wrote: >> >> > I agree with almost all of it, except for these 2. >> > >> > 1. No HTML emails >> >> I don't like HTML emails because usual

Re: [BangPypers] Mailing list etiquette

2014-08-04 Thread Anand Chitipothu
> > Not only that, it is a pain to download something and open it in some >> application just to know what is inside. It is a lot better to send a link >> instead of sending attachments. >> > > ​Anand, how do you consume your emails? I get my emails on my phones as > well, in gmail, which has a pre

Re: [BangPypers] Mailing list etiquette

2014-08-04 Thread Saager Mhatre
On Mon, Aug 4, 2014 at 9:06 PM, Anand Chitipothu wrote: > > > > Not only that, it is a pain to download something and open it in some > >> application just to know what is inside. It is a lot better to send a > link > >> instead of sending attachments. > >> > > > > ​Anand, how do you consume your

Re: [BangPypers] how to override sys.stdin

2014-08-04 Thread Saager Mhatre
On Mon, Aug 4, 2014 at 2:38 PM, Nitin Kumar wrote: > Hi All, > > is there a way i can override raw_input or input function. This sooo smells of the XY Problem . What are you really trying to do here? - d ___ BangPypers mai

[BangPypers] Looking for Exceptional Python and Django Developers/ Interns

2014-08-04 Thread Syed Awase khirni
Hello, We are a stealth mode startup working on geoanalytical engine. We are looking for exceptional Python, Django Developers. Should be comfortable with MariaDB, Postgresql Remuneration - Equity + Pay. Please share your profile. We are also open for interns. The position is based out of bangalo

Re: [BangPypers] Mailing list etiquette

2014-08-04 Thread Balachandran Sivakumar
Hi Jeff, On Mon, Aug 4, 2014 at 1:29 PM, Jeffrey Jose wrote: > I agree with almost all of it, except for these 2. > > 1. No HTML emails I generally look at it from this perspective - Do we really need HTML to convey something ? Are plain words not sufficient enough to express ourselves ?