Re: Contact information for Jim Hugunin?

2013-07-27 Thread greymausg
On 2013-07-24, Albert Hopkins wrote: > On Mon, Jul 22, 2013, at 05:33 PM, Larry Hastings wrote: >> >> >> Does anybody have an email address (or anything, really) for Jim >> Hugunin? He left Google in May and appears to have dropped off the face >> of the internet. Please email me privately.

ipython

2014-02-15 Thread greymausg
using IPython, is there any way of recording the commands I have entered? -- maus . . ... -- https://mail.python.org/mailman/listinfo/python-list

Re: ipython

2014-02-15 Thread greymausg
On 2014-02-15, Mark Lawrence wrote: > On 15/02/2014 11:55, greymausg wrote: >> using IPython, is there any way of recording the commands I have entered? >> > > I believe ipython automatically stores the commands you enter. > Searching for ipython+command+history should ge

Re: ipython

2014-02-15 Thread greymausg
On 2014-02-15, greymausg wrote: > On 2014-02-15, Mark Lawrence wrote: >> On 15/02/2014 11:55, greymausg wrote: >>> using IPython, is there any way of recording the commands I have entered? >>> >> >> I believe ipython automatically stores the commands you e

date

2015-03-02 Thread greymausg
I have a csv file, the first item on a line is the date in the format 2015-03-02 I try to get that as a date by date(row[0]), but it barfs, replying "Expecting an integer". (I am really trying to get the offset in weeks from that date to today()) -- greymaus . . ... -- https://mail.python.o

Re: date

2015-03-02 Thread greymausg
On 2015-03-02, Fabien wrote: > On 02.03.2015 12:55, greymausg wrote: >> I have a csv file, the first item on a line is the date in the format >> 2015-03-02 I try to get that as a date by date(row[0]), but it barfs, >> replying "Expecting an integer". (I am really

Re: date

2015-03-02 Thread greymausg
On 2015-03-02, Steven D'Aprano wrote: > greymausg wrote: > >> I have a csv file, the first item on a line is the date in the format >> 2015-03-02 I try to get that as a date by date(row[0]), but it barfs, >> replying "Expecting an integer". (I am really tr

Re: date

2015-03-02 Thread greymausg
On 2015-03-02, greymausg wrote: > On 2015-03-02, Steven D'Aprano wrote: >> greymausg wrote: >> >>> I have a csv file, the first item on a line is the date in the format >>> 2015-03-02 I try to get that as a date by date(row[0]), but it barfs, >>>