Metadata-Version: 2.1
Name: scheduler-todo
Version: 0.0.8
Summary: A scheduler command line program in Python.
Home-page: https://github.com/jil8885/scheduler-cli
Author: Jeongin Lee
Author-email: jil8885@hanynag.ac.kr
License: MIT LICENSE
Keywords: cli,scheduler-cli
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Requires-Dist: termcolor
Requires-Dist: colorama
Requires-Dist: flask
Requires-Dist: requests

Scheduler-cli tool
================================
Intro
-----
Scheduler for Python

Installation
-----------------

::

	pip install scheduler-todo

Usage
-----------------

1. Add schedule
-------------------------------

::

	add {due} {content} in {category}

Example

::

	add 3/2 hit hoesung in school

Example without category

::

	add 3/2 hit hoesung


2. Delete schedule
----------------------------------

::

	delete all

::

	delete {index}

::

	delete in {category}

::

	delete done/undone

Example with index

::

	delete 3

Example with category

::

	delete in school


Example with state

::

	delete done


3. Update schedule
------------------------------

::

	update {index} {done/undone}

::

	update {index} at {date to modify}


Example with index to modify done/undone

::

	update 3 done

Example with index to modify date

::

	update 3 at 5/31

Example with category to modify done/undone

::

	update in school done

Example with category to modify date

::

	update in school at 6/31



4. Print schedule
------------------------------------

::

	show {index}

::

	show in {category}

::

	show at {month}

::

	show {done/undone}

Example with showing all schedule

::

	show all

Example with index

::

	show 3

Example with category

::

	show in school

Example with month

::

	show at May

Example with state

::

	show undone

5. Pull schedule from server

::

	pull


6. Pull schedule to server

::

	push

7. Sync schedule with server

::

	sync



Changelog
-----------

- v0.1 : Beta Version
- v0.2 : add calender func and fix input bugs
- v0.7 : add func to sync server

