Python Starter

Execute local Python scripts

Page content
Looking for books about AWS certifcation or want to support the development of my tools? Use this link: AWS Certifcation

I use the Python Starter to conveniently execute local Python scripts via button. At the same time, I also use the Python Starter for local development of my AWS Lambda functions before I deploy them. I use Python for all my backend tasks. This tool is for easy launching your scripts.

Python Starter

In the background, the Python Starter executes commands according to the following scheme:

  • Switch to the working directory
  • Execute the Python command, via python -c "your command".

The output of the executed script is displayed at the bottom. Each subsequent execution cleans up the previous output. Installation and configuration

Save the downloaded pythonstarter.exe to a destination folder of your choice and run the program. A configuration file will be created, which you can open directly by clicking the “Config” button. Add your Python scripts and working directories to this file. Save your changes and close the editor. The data will be reloaded automatically.

To set environment variables for your Python file, you can add as many entries as you want. These are added automatically when you run your script. Please note that they may be case sensitive.

The output of the Python script that is running will be displayed to you at the bottom of the window.

[Python1]
workingdir=c:\python
python=import sample; sample.helloworld()
envvar=Hello
anothervariable=World
[Another Function]
workingdir=c:\python
python=import sample2; sample2.helloworld()

Suggestions

Give me your suggestions about my software so that I can include more features that you need.

Notes

The software Python Starter is freeware and can be redistributed without my consent! I assume no liability for the software!

Version Information

As soon as I release a new version of Python Starter, I will list the changes that have been made to it here in more detail.

I am also very happy to receive your suggestions about the Python Starter tool. I am looking forward to any feedback. Please use my contact form for this purpose.

Python Starter 2.0.3

Releasedate: 2024-01-30

  • CHG: Updated CodeSigning certificate

Python Starter 2.0.2

Releasedate: 2023-11-23

  • FIX: Update function did not work correct
  • FIX: Removed old code to improve performance

Python Starter 2.0.1

Releasedate: 2023-02-07

  • CHG: Update Code Signing Certificate
  • FIX: First refactoring using SonarQube

Python Starter 2.0.0

Releasedate: 2022-08-20

  • CHG: rebrand from erpware to Daniel Seichter

Python Starter 1.3.0

Releasedate: 2022-04-27

  • NEW: New Design for better experience
  • NEW: Enables setting environment variables
  • CHG: improvements on execute the python scripts