Python Forum
How to make python run other file?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to make python run other file?
#1
How do I make python run another file from the local disk?
Reply
#2
You could be more specific about file types and task it should to do.
If it's a .py then module or packages is used for that trough import.

subprocess is way for Python to run other files.
So example this will on Windows run ping.exe and we capture output it gives.
import subprocess

out = subprocess.run(['ping', 'google.com'], capture_output=True, encoding='utf-8')
print(out.stdout)
Output:
Pinging google.com [172.217.20.46] with 32 bytes of data: Reply from 172.217.20.46: bytes=32 time=39ms TTL=119 Reply from 172.217.20.46: bytes=32 time=39ms TTL=119 Reply from 172.217.20.46: bytes=32 time=46ms TTL=119 Reply from 172.217.20.46: bytes=32 time=53ms TTL=119 Ping statistics for 172.217.20.46: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), Approximate round trip times in milli-seconds: Minimum = 39ms, Maximum = 53ms, Average = 44ms
Reply
#3
I am wanting to run another .py
Reply
#4
And I use OSX.
Reply
#5
If you have code in another Python module or package, then as above, import the functions, classes, etc. and use them.

Also show a code sample if you're still confused.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How to make a test data file for the full length of definition? MDRI 6 3,538 Apr-16-2021, 01:47 AM
Last Post: MDRI
  Is there anyway to make a .py file into a .exe file? Oshadha 2 2,353 Jan-13-2021, 04:58 AM
Last Post: Oshadha
  make a list of the file in the folder and change the name of file regarding to time go127a 5 2,933 Feb-21-2020, 10:36 AM
Last Post: go127a
  Python: possibilty ro make a list of the file in the folder & change the name of file go127a 0 1,670 Feb-05-2020, 01:16 PM
Last Post: go127a
  Trying to make column based file from text file scor1pion 7 3,465 Jul-16-2019, 02:43 PM
Last Post: scor1pion
  How to make a list file in Python. punyashloke 2 2,636 Aug-19-2018, 07:04 AM
Last Post: BIGPESH

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020