This project was born after readning the comments in this post of HackerNews. This application writes a file with a list of the activites and their priority (numeric index: 1 highest priority, 2 less prioritary, etc). In detail:
- The application reads two existing files:
- activity-date.csv (Activity,Start,End) about the duration of an activity
- activity-importance.csv (Activity,Importance) about the importance of an activity. The meaning of importance is relative and vague. A definition can be: if you have two activites A and B in the same time, A is more important of B if doing A you can earn more money (or, lose less money) than doing B.
- The application writes one file ordered-activities.csv (Activity, Priority)
[O] The input files can have a different order of the activities each other (now the order has to be the same, otherwise an Exception will be run) [O] The final list can be separated in "activities already started" (start date minor than today) and "future activities" (start date major than today) [O] The final list can be separated by the area of interest of the project (Area of responsability in GTD meaning)
[X] Fix the unit test [O] Resolve the TODO in the code [O] Organize the structure following the guidelines in The Hitchhiker's Guide to Python!
I use Travis
- Python 3.0+
- pip
- pytest
- Clone the project with git-clone (or download directly it)
- Have fun!
- In this version the unit test are inside the module and are not completed. TDD, sorry :(
No indications
Please read the file CONTRIBUTING.md
- No package built (sorry, I'm a beginner in Python :) )
- Run >>> python Main.py
Please read the CONTRIBUTING.md for the details about the code of conduct and the process for submitting pull requests.
We use SemVer for versioning. For the versions available, see the tags on this repository.
- Alessandro Puzielli - creator - Alepuzio
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE.md file for details
- PurpleBooth - to publish an excellent template of README that I used in this project
- Yegor256 - to write the post Elegant READMEs about the README file and the An Open Code Base Is Not Yet an Open Source Project for the Open Source activities