FNEtodo

Simple command-line Todo app.


Keywords
todo, task
License
MIT
Install
pip install FNEtodo==0.1.1

Documentation

Python Version

Todo1

Commandline todo application for internship assignment.

Requirements

This project requires Python 3.7.2 or newer run-time.

Install

$ cd $home  
$ git clone  https://github.com/FatmanurEraslan/Todo1.git
$ cd Todo1
$ python 3 setup.py install

or

$ pip install FNE-todo  

License

This project is licensed under MIT

Usage

$ todo add 'Buy a ticket'

Buy a ticket is added .

0001 : Buy a ticket

$  todo add 'Clean the house'

Clean the house is added .

0001 : Buy a ticket 0002 : Clean the house

$  todo complete 1

Buy a ticket is completed!

0001 : Clean the house

$  todo list

0001 : Clean the house

$  todo completed

0001 : Buy a ticket

$  todo add 'Visit grandpa' 'Go to shopping mall'

Visit grandpa is added .

Go to shopping mall is added .

0001 : Clean the house 0002 : Visit grandpa 0003 : Go to shopping mall

Contributer(s)

Contribute

All PR’s are welcome!

  1. fork (https://github.com/FatmanurEraslan/Todo1/fork)
  2. Create your branch (git checkout -b my-features)
  3. commit yours (git commit -am 'added killer options')
  4. push your branch (git push origin my-features)
  5. Than create a new Pull Request!

Change Log

2019-09-03

  • Removed irrelevant files
  • Added .gitignore
  • Updated README.md

2019-08-28

  • Initial start