Link to home
Start Free TrialLog in
Avatar of CAE5942
CAE5942

asked on

Turning python script into an applet

Hi everyone,

I have a small python script that I've been running on my mac computer through the terminal, however I need to give the script to someone using a PC so that they can run it on their local computer. Since the person doesn't know any programming they won't be able to run it via the command line so I was wondering if it's possible to turn the script into a little applet so that it can be easily run. The script basically merges together a whole lot of .csv files so I was hoping that if the person had all the files in a folder then they could drag an applet icon onto the folder which would run the script.

Can any tell me if this is possible and how I would go about converting the python script into an applet to work on a PC? I have attached the script.

Would really appreciate any advice.
Avatar of Walter Ritzel
Walter Ritzel
Flag of Brazil image

the best approach for a pc would be a batch script. the script would have the command line and could be executed b double click.
Avatar of CAE5942
CAE5942

ASKER

Thanks for the reply. Are you talking about converting a python script into a Windows .exe file? If yes, would I need to do this on the other person's computer or can I do it on my computer and then provide the .exe file?
Avatar of CAE5942

ASKER

There is a tutorial on how to do this at the following url:

https://www.youtube.com/watch?v=kyoGfnLm4LA

Just to clarify, is that the procedure that you recommend?
no, I mean create a simple batch script (.bat or .CMD) file.
Avatar of CAE5942

ASKER

Thanks but I wanted to keep using my original python script. Are you able to make a suggestion where I can do that and still have someone on a PC run it?
you will continue to have your Python script, but will create a small batch file with one line that will call the Python script and could be actioned by double click
Avatar of CAE5942

ASKER

Ok that sounds good but are you able to tell me how to do this as I've never done it before? Also, will the person need to have the python script in the same folder as the .csv files?
Avatar of CAE5942

ASKER

Just one other thing if that's ok: the other person won't have python installed on their pc so this method needs to work in this type of situation. Can you clarify that this will be the case?
OK, then the situation is little bit more complicated: if you don't want the person to have Python installed, this will require that you use one of the projects that encapsulate a Python script in an executable file, which will require that you have a Windows system to do it.
ASKER CERTIFIED SOLUTION
Avatar of Walter Ritzel
Walter Ritzel
Flag of Brazil image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of CAE5942

ASKER

Ok thanks for the help
Avatar of CAE5942

ASKER

Sorry to come back to this but is there also a way to run the python script on a mac other than using the terminal? I was hoping there was some method like on the PC whereby I could double-click a file and run the script. If yes, could you provide some information?

Thanks again