timed is a command-line time tracker.

  timed: alias for 'timed status'
  
  timed status: print current status

  timed start <project>: start tracking for <project>

  timed stop: stop tracking for the current project

  timed summary: print a summary of hours for all projects
  
  timed help: print help

A human-readable log is stored in ~/.timed, and can be edited.

Installation: easy_install timed, or:

  $ git clone git://github.com/adeel/timed.git
  $ cd timed
  $ python setup.py install

Tip: put the name of the active timed project in your bash prompt:

    function get_timed_project {
      timed status --quiet
    }
    
    PS1='\u@\h \$(get_timed_project) [\w] \n % '

Release notes:

  0.13: No need to use ez_setup.
  0.12: YAML turned out to be pretty slow, so it's been dropped.
  0.11: Using YAML to store the log.
  0.10: First release.
