[BangPypers] John Hunter Sad Demise

2012-08-30 Thread kracekumar ramaraju
Hi John Hunter creator of Matplotlib library passed away on August 28, 2012. I haven't used matplotlib extensively but John seems to be great community man. Here is the post in scipy mailing list http://mail.scipy.org/pipermail/ipython-dev/2012-August/010135.html -- * Thanks & Regards "Talk

Re: [BangPypers] [X-Post] Emacs movies by Noufal

2012-08-30 Thread Ramchandra Apte
On 30 August 2012 12:28, Sujit Ghosal wrote: > Pretty informative. However, I personally prefer [G]vim over Emacs as I am > too much used to [G]vim since a very long time. :-) > > > Thanks, > Sujit > > > On Thu, Aug 30, 2012 at 11:55 AM, Balachandran Sivakumar < > benignb...@gmail.com> wrote: > >

Re: [BangPypers] [X-Post] Emacs movies by Noufal

2012-08-30 Thread Prashant Gaur
h komodo rocks ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] [X-Post] Emacs movies by Noufal

2012-08-30 Thread Harsh Jha
@Ramchandra Its other way round dude. Just an example - http://www.quora.com/What-tools-and-IDEs-does-the-Quora-team-develop-with On Thu, Aug 30, 2012 at 6:22 PM, Prashant Gaur <91prashantg...@gmail.com>wrote: > h komodo rocks > ___ > BangPypers ma

[BangPypers] Best way to convert this string into datetime object

2012-08-30 Thread Kushal Das
Hi, What is the best way to convert "Thu Aug 30 11:59:18 + 2012" into a datetime object ? Kushal -- http://fedoraproject.org http://kushaldas.in ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] Best way to convert this string into datetime object

2012-08-30 Thread Ramchandra Apte
I googled "string to date python" and found http://stackoverflow.com/questions/466345/converting-string-into-datetime. >From there I see you should use the strptime() function On 30 August 2012 19:58, Kushal Das wrote: > Hi, > What is the b

Re: [BangPypers] Best way to convert this string into datetime object

2012-08-30 Thread Ramchandra Apte
Sorry you should use datetime.strptime On 30 August 2012 20:01, Ramchandra Apte wrote: > I googled "string to date python" and found > http://stackoverflow.com/questions/466345/converting-string-into-datetime. > From there I see you should use the > strptime

Re: [BangPypers] Best way to convert this string into datetime object

2012-08-30 Thread Kushal Das
On Thu, Aug 30, 2012 at 8:03 PM, Ramchandra Apte wrote: > Sorry you should use datetime.strptime > It was failing that is why I asked here. Managed to do this using dateutil package in the most simple way. Kushal -- http://fedoraproject.org http://kushaldas.in __

Re: [BangPypers] Best way to convert this string into datetime object

2012-08-30 Thread kracekumar ramaraju
In [27]: from dateutil import parser In [28]: p = parser.parse("Thu Aug 30 11:59:18 + 2012") In [29]: p.tzname Out[29]: In [30]: p.tzname() Out[30]: 'UTC' On Thu, Aug 30, 2012 at 8:09 PM, Kushal Das wrote: > On Thu, Aug 30, 2012 at 8:03 PM, Ramchandra Apte > wrote: > > Sorry you should