Skip to content

A Python library meant to be used on the command line to create/modify/delete lists

License

Notifications You must be signed in to change notification settings

nairraghav/lists-library

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

List Manager

Build Status codecov.io PyPI version

A CLI tool that allows for list management

How To Use

This tool is meant to be used as a CLI (command line interface). You will need to install the package from pypi

pip install list_manager

After installing, you can immediately start using the tool from your command line

Show All Lists

list_manager get_lists

Show All Items In List

list_manager get_list -l <list-name>

Create List

list_manager create_list -l <list-name> -i <optional-initial-list-item>

Add Item To List

list_manager add_item -l <list-name> -i <item-name>

Delete Item From List

list_manager delete_item -l <list-name> -i <item-name>

Delete List

list_manager delete_list -l <list-name>

About

A Python library meant to be used on the command line to create/modify/delete lists

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 95.2%
  • Makefile 4.8%