10 examples of 'python execute file' in Python

Every line of 'python execute file' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
30def execfile(filename, globals, locals):
31 """Python 3 replacement for ``execfile``."""
32 # Credit: 2to3 and this StackOverflow answer
33 # (http://stackoverflow.com/a/437857/841994) take similar
34 # approaches.
35 with open(filename) as f:
36 code = compile(f.read(), filename, 'exec')
37 exec(code, globals, locals)
74@rpc_export('python_execute_file', sync=True)
75def python_execute_file(self, file_path, range_start, range_stop):
76 """Handle the `pyfile` ex command."""
77 self._set_current_range(range_start, range_stop)
78 with open(file_path) as f:
79 script = compile(f.read(), file_path, 'exec')
80 try:
81 exec(script, self.module.__dict__)
82 except Exception:
83 raise ErrorResponse(format_exc_skip(1))
7def execfile3(file, globals=globals(), locals=locals()):
8 with open(file, "r") as fh:
9 exec(fh.read()+"\n", globals, locals)
99def run_file(self, filename):
100 """ Run file system file in this environment. """
101 with self.game.fs.open(filename) as f:
102 code = f.read()
103
104 return self.run(code, filename)
193def execfile(filename, device='/dev/ttyACM0', baudrate=115200, user='micro', password='python'):
194 pyb = Pyboard(device, baudrate, user, password)
195 pyb.enter_raw_repl()
196 output = pyb.execfile(filename)
197 stdout_write_bytes(output)
198 pyb.exit_raw_repl()
199 pyb.close()
330def r_execfile(self, file):
331 """Execute the Python code in the file in the restricted
332 environment's __main__ module.
333
334 """
335 m = self.add_module('__main__')
336 execfile(file, m.__dict__)
75def executebuiltin(function, *args):
76
77 """Execute a built in Kodi function"""
78 try:
79 if '?' in function:
80 sys.argv = [None, None, function.split('?')[1]]
81 execfile(os.path.abspath(os.path.join(os.getcwd(), 'seren.py')))
82 except:
83 import traceback
84 traceback.print_exc()
85 pass
79def ExecuteScript(scriptFilePath):
80 path_util.AddSearchPath(Path.GetDirectoryName(scriptFilePath))
81 scriptGlobals = {}
82 execfile(scriptFilePath, scriptGlobals)
83 return
36def _run():
37 global __file__
38 import os, sys
39 base = os.environ['RESOURCEPATH']
40
41 sys.frozen = 'macosx_app'
42 sys.frameworks_dir = os.path.join(os.path.dirname(base), 'Frameworks')
43 sys.new_app_bundle = True
44 sys.site_packages = os.path.join(base, 'Python', 'site-packages')
45 sys.binaries_path = os.path.join(os.path.dirname(base), 'MacOS')
46 sys.console_binaries_path = os.path.join(os.path.dirname(base),
47 'console.app', 'Contents', 'MacOS')
48
49 exe = os.environ.get('CALIBRE_LAUNCH_MODULE', 'calibre.gui2.main')
50 exe = os.path.join(base, 'Python', 'site-packages', *exe.split('.'))
51 exe += '.py'
52 sys.argv[0] = __file__ = exe
53 for arg in list(sys.argv[1:]):
54 if arg.startswith('-psn'):
55 sys.argv.remove(arg)
56 execfile(exe, globals(), globals())
18def run_file(path):
19 with open(path) as f:
20 execute(f.read())

Related snippets