Re: [Tutor] Tracking time

2010-01-06 Thread lisaniel

are you going to track the time of the employees or to track the work flow of
yours..
it will be quite easier if you specify your query a clear one.


Michael Key wrote:
> 
> I am trying to develop a project tracking program that would allow you to
> track hours and minutes spent on several different projects and store he
> data in a database for printing. Any help would be appreciated.
>  
> Mike
> 
> 
http://www.labortimetracker.com/ Online Timecard 

-- 
View this message in context: 
http://old.nabble.com/Tracking-time-tp8592772p27026982.html
Sent from the Python - tutor mailing list archive at Nabble.com.

___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor


Re: [Tutor] Tracking time

2007-01-24 Thread johnf
On Wednesday 24 January 2007 14:34, Michael Key wrote:
> I am trying to develop a project tracking program that would allow you to
> track hours and minutes spent on several different projects and store he
> data in a database for printing. Any help would be appreciated.
>
> Mike

Take a good look at Dabo @ www.dabodev.com
Check out the latest screencast.  Dabo was designed from bottom to support 
database and GUI apps.
-- 
John Fabiani
___
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor


Re: [Tutor] Tracking time

2007-01-24 Thread Luke Paireepinart
Michael Key wrote:
> I am trying to develop a project tracking program that would allow you 
> to track hours and minutes spent on several different projects and 
> store he data in a database for printing. Any help would be appreciated.
You could store the start time using the time module.
when they're done with whatever you're timing,
get the current time again.
The difference between these two times is how long it took them to 
complete the task.
Decide on a database (oracle, postgre, mysql) and get the python library 
that lets you interface with your database and learn how to use it.
It's unclear what exactly a 'project' is from your e-mail so my reply is 
similarly vague, sorry.

HTH,
-Luke
___
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor


[Tutor] Tracking time

2007-01-24 Thread Michael Key
I am trying to develop a project tracking program that would allow you to track 
hours and minutes spent on several different projects and store he data in a 
database for printing. Any help would be appreciated.
 
Mike___
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor