Metadata-Version: 2.0
Name: gtd
Version: 0.0.2
Summary: Manages a simple log book, to Get Things Done
Home-page: https://github.com/magmax/logbook
Author: Miguel Ángel García
Author-email: miguelangel.garcia@gmail.com
License: MIT
Keywords: logbook scheduler todo backlog
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Documentation
Classifier: Operating System :: OS Independent
Requires-Dist: pyyaml
Provides-Extra: develop
Requires-Dist: coveralls (>=1.1); extra == 'develop'
Requires-Dist: flake8 (>=3.3.8); extra == 'develop'
Requires-Dist: pytest (>=3.0.6); extra == 'develop'
Requires-Dist: pytest-cov (>=2.4.0); extra == 'develop'

====================  =================================================================================
Tests                 |travis| |coveralls|
--------------------  ---------------------------------------------------------------------------------
Downloads             |pip dm| |pip dw| |pip dd|
--------------------  ---------------------------------------------------------------------------------
About                 |pip license| |pip wheel| |pip pyversions| |pip implem|
--------------------  ---------------------------------------------------------------------------------
Status                |version| |status|
====================  =================================================================================

About
=====

I've been using a TODO list for years in paper, inspired by the book "The Personal Software Process", by Watts S. Humprey. But I read the article `The Power of the TODO List`_, by `James Hood`_ and I decided to implement it in that way.

Basically, there are a file per day to write down 3 parts:

- TODO: This is the most important part: things to be accomplished today.
- Accomplished: things that were finished today.
- Backlog: Things to be accomplished in the future.


Why to use GTD?
---------------

Because it is very simple and easy to use. Just install it with ``pip install gtd`` and edit the current day with ``python -m gtd``. That's it.

The format is quite simple. Just the headers "TODO", "Accomplished" and "Backlog" for these tasks, and each task must start with a hyphen and space('- ').

Each day, it will copy the previous file, and:

- it will remove the 'Accomplished' section.
- it will move to the 'TODO' section the tasks from the 'Backlog' section that with a due date previous to current date.

The 'Backlog' section can have a due date, if they starts with ``[YYYY-MM-DD]``.

Example::

    TODO:
    - do cool things
    - do useful things

    Accomplished:
    - do minor stuff

    Backlog:
    - [2049-02-31] Take on the world


Roadmap
-------

GTD_ is fully usable. In the near future it should be able to generate statistics and reports with the activity.




.. |travis| image:: https://img.shields.io/travis/magmax/gtd/master.svg
  :target: `Travis`_
  :alt: Travis results

.. |coveralls| image:: https://img.shields.io/coveralls/magmax/gtd.svg
  :target: `Coveralls`_
  :alt: Coveralls results_

.. |pip version| image:: https://img.shields.io/pypi/v/gtd.svg
    :target: https://pypi.python.org/pypi/gtd
    :alt: Latest PyPI version

.. |pip dm| image:: https://img.shields.io/pypi/dm/gtd.svg
    :target: https://pypi.python.org/pypi/gtd
    :alt: Last month downloads from pypi

.. |pip dw| image:: https://img.shields.io/pypi/dw/gtd.svg
    :target: https://pypi.python.org/pypi/gtd
    :alt: Last week downloads from pypi

.. |pip dd| image:: https://img.shields.io/pypi/dd/gtd.svg
    :target: https://pypi.python.org/pypi/gtd
    :alt: Yesterday downloads from pypi

.. |pip license| image:: https://img.shields.io/pypi/l/gtd.svg
    :target: https://pypi.python.org/pypi/gtd
    :alt: License

.. |pip wheel| image:: https://img.shields.io/pypi/wheel/gtd.svg
    :target: https://pypi.python.org/pypi/gtd
    :alt: Wheel

.. |pip pyversions| image::  	https://img.shields.io/pypi/pyversions/gtd.svg
    :target: https://pypi.python.org/pypi/gtd
    :alt: Python versions

.. |pip implem| image::  	https://img.shields.io/pypi/implementation/gtd.svg
    :target: https://pypi.python.org/pypi/gtd
    :alt: Python interpreters

.. |status| image::	https://img.shields.io/pypi/status/gtd.svg
    :target: https://pypi.python.org/pypi/gtd
    :alt: Status

.. |version| image:: https://img.shields.io/pypi/v/gtd.svg
    :target: https://pypi.python.org/pypi/gtd
    :alt: Status



.. _Travis: https://travis-ci.org/magmax/gtd
.. _Coveralls: https://coveralls.io/r/magmax/gtd

.. _@magmax9: https://twitter.com/magmax9
.. _GTD: https://github.com/magmax/gtd
.. _`James Hood`: http://jlhood.com
.. _`The Power of the TODO List`: http://jlhood.com/the-power-of-the-todo-list/


