Skip to content

PyWimVBA 5.2

Compare
Choose a tag to compare
@ScadeBlock ScadeBlock released this 04 Jul 15:23
· 28 commits to main since this release
3ffab90

✨✨ New on PythonWimVBA 5.2 ✨✨

  • Catch All Python Output, so outtl is useless (removed!, don't need on 5.2 or higher version)
  • Added UseDebug (show cmd and keep cmd alive with it's output) and keepFileData (keeps pywvout.txt and pywvba.py after execution) attributes

Usage

Command: RunPy(code,pythonPath, [outputFilePath = "pywvout.txt"] , [ filename = "pywvba.py"], [ keepFileData = False] , [UseDebug = False])

  • Code splitting by ";;" , e.x : import time;;time.sleep(5)
  • [Optional] Output File Path: File that writes every output of python
  • [Optional] File Name: File that contains your code to run
  • [Optional] keepFileData: Keep output file and code file after finishing execution.
  • [Optional] UseDebug: Show cmd that runs python code, keep it alive with it's output [Use debug to catch errors, Output file may not catch them. So when debug is enabled, Output file does nothing.]