A CLI python application that runs inside the terminal enabling the users to lists stock and query a given stock from the db list.
The user can:
- View the list of currency with their respective code and country
- Retrieve a currency code by given code
The required commands for the application include;
list_all
- The user can be able to lists the currenciesstock query_currency <code>
- The user can be able to query a given currency code
#Installation.
To be able to get this project to your local machine
$ git clone [email protected]:BethMwangi/cheap-stock.git
$ cd cheap-stock
$ . venv/bin/activate
$ pip3 install -r requirements.txt
$ pip3 install --editable .
$ python3 docopt_config.py
"""
Usage:
stock list_all
stock query_currency
Options:
-h, --help Show this screen
--version Show version
"""