A simple cli for managing contacts
Clone this github repo
$ git clone https://github.com/citguru/mytact
$ cd mytact
Create a virtualenv
$ mkvirtualenv mytactenv
$ workon mytactenv
Install Python Libraries
$ pip install -r requirements.txt
Or
$ pip install mytact
$ python mytact.py --help
$ python mytact.py add
With arguments
$ python mytact.py add <firstname> <lastname> <email> <phone>
E.g
$ python mytact.py add Oyetoke Toby oyetoketoby80@gmail.com 08182315466
$ python mytact.py update
or
$ python mytact.py update --id <ID>
E.g
$ python mytact.py update --id 8686
With options
$ python mytact.py update --id <ID> --firstname <firstname> --lastname <lastname>
E.g
$ python mytact.py update --id 8686 --firstname Oyetoke --lastname Toby
$ python mytact.py list
or
$ python mytact.py list <len:int>
E.g
$ python mytact.py list 2
$ python mytact.py find
or
$ python mytact.py find <query>
E.g
$ python mytact.py find Toby
With options
$ python mytact.py find --firstname <firstname>
E.g
$ python mytact.py find --firstname Oyetoke
$ python mytact.py delete
With options
$ python mytact.py delete --id <ID>
E.g
$ python mytact.py delete --id 86800