Skip to content

mugdhadalal/pycalci

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

71 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A Simple command line tool calculator using Python

In this project, i used a Fire to solve expressions such as BODMAS,which solves multiple operations i.e addition,subtraction,multiplication and division. Where fire is a Python library that will turn any Python component into a command line interface with just a single call to Fire. The easiest way to use Fire is to take any Python program, and then simply call fire.Fire() at the end of the program. This will expose the full contents of the program to the command line.

Getting Started

How to run project?

  1. Create a virtual environment on your local machine
python3 -m venv env
  1. Activate virtual environment
source env/bin/activate
  1. Make a local directory

  2. Clone project in your directory

git clone https://github.com/mugdhadalal/pycalci.git
  1. Install setup.py
python3 setup.py install
  1. Use command pycalci,it will show you commands
$ pycalci

NAME
    pycalci
SYNOPSIS
    pycalci COMMAND
COMMANDS
    COMMAND is one of the following:

     solve
  1. use pycalci solve EXPRESSION
$ pycalci solve 2+4*5/2
12.0

Example

import fire

def hello(name):
  return 'Hello {name}!'.format(name=name)

if __name__ == '__main__':
  fire.Fire()

Here's how we can run our program from the command line:

$ python example.py hello World
Hello World!

Dependancies

Scripting Language = Python 3.0+

Command-Line Option = fire

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages