I'm having a function where an excel file is passed as an argument to it. My function manipulates the passed file and does some calculations from the values of the existing column, writes those values into the new column, and then it writes it as .csv format. Now, I just want to hide this code i.e user should not see the code. I want to run this from a terminal by passing the input file.
I have converted my .py
file to .pyc
file. now I want to run the .pyc
file by passing my input file in anaconda prompt.