Skip to content
Advertisement

What is the best way to call a script from another script? [closed]

I have a script named test1.py which is not in a module. It just has code that should execute when the script itself is run. There are no functions, classes, methods, etc. I have another script which runs as a service. I want to call test1.py from the script running as a service.

For example:

File test1.py:

JavaScript

File service.py:

JavaScript

I’m aware of one method which is opening the file, reading the contents, and basically evaluating it. I’m assuming there’s a better way of doing this. Or at least I hope so.

Advertisement

Answer

The usual way to do this is something like the following.

test1.py

JavaScript

service.py

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement