Metadata-Version: 2.1
Name: rqs
Version: 0.1.10
Summary: A handy tool to manage your credentials or frequent used commands.
Home-page: https://github.com/tvytlx/rqs
Author: tvytlx
Author-email: tvytlx@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
Requires-Dist: click
Requires-Dist: simplekv
Requires-Dist: crayons


# rqs

A handy tool to manage your credentials or frequent used commands.


Usage
========

```
$ rqs --help
Usage: rqs [OPTIONS] COMMAND [ARGS]...

  A handy tool to manage your credentials or frequent used commands.

  COMMAND:
      add ENTRT_NAME other_command    # add an entry
      list                            # list all entries
      delete ENTRY_NAME               # delete entry by name
      delete_all                      # delete all entries

  RUN ENTRY:
      rqs ENTRY_NAME

  EXAMPLES:

      $ rqs add mongo_local mongo localhost -u xxx -p xxx
      rqs added a command entry.

      $ rqs mongo_local
      > (local) show dbs

      $ rqs add APIKEY xxxxxx
      rqs added a text entry.

      $ rqs APIKEY  # just print APIKEY to stdout
      xxxxxx

Options:
  --version  Show the version and exit.
  --help     Show this message and exit.
```

Install
========
```
$ pip install rqs
```


