On Jan 29, 10:00 am, John Machin wrote:
> On Jan 29, 1:05 am, Jon Clements wrote:
>
>
>
> > On Jan 28, 1:50 pm, Steve Holden wrote:
>
> > > Shah Sultan Alam wrote:
> > > > Hi Group,
> > > > I have file with contents retrieved from mysql DB.
> > > > which has a time field with type defined bigint
On Jan 29, 1:05 am, Jon Clements wrote:
> On Jan 28, 1:50 pm, Steve Holden wrote:
>
>
>
> > Shah Sultan Alam wrote:
> > > Hi Group,
> > > I have file with contents retrieved from mysql DB.
> > > which has a time field with type defined bigint(20)
> > > I want to parse that field into timestamp fo
On Jan 28, 1:50 pm, Steve Holden wrote:
> Shah Sultan Alam wrote:
> > Hi Group,
> > I have file with contents retrieved from mysql DB.
> > which has a time field with type defined bigint(20)
> > I want to parse that field into timestamp format(-MM-DD HH:MM:SS
> > GMT) using python code.
> > Th
Shah Sultan Alam wrote:
> Hi Group,
> I have file with contents retrieved from mysql DB.
> which has a time field with type defined bigint(20)
> I want to parse that field into timestamp format(-MM-DD HH:MM:SS
> GMT) using python code.
> The value I found for that field is 212099016004150509
>
Shah Sultan Alam wrote:
> I have file with contents retrieved from mysql DB.
> which has a time field with type defined bigint(20)
> I want to parse that field into timestamp format(-MM-DD HH:MM:SS
> GMT) using python code.
Try time.strftime.
> The value I found for that field is 212099016004
Hi Group,
I have file with contents retrieved from mysql DB.
which has a time field with type defined bigint(20)
I want to parse that field into timestamp format(-MM-DD HH:MM:SS
GMT) using python code.
The value I found for that field is 212099016004150509
Give me sample code that does the conv