A python program typed into Notepad++ can be run from the Notepad++ screen, with the run key. (Windows 10).
Windows environmental variable (proper path) has to be set up, and the proper command entered into the run window of Notepad++.
The youtube video https://youtu.be/yxTbSTrCn6I explains the requirements, after watching several times.
My notepad++ run entry is C:\XXXX\orcha\AppData\Local\Programs\Python\Python39\python.exe -i "$(FULL_CURRENT_PATH)"
Be sure to include a space before, and also after the -i.
The XXXXX entry is to be replaced with the users "username".
I'll post my python csv import (from MoI savepointnetwork script) and also python csv export (to MoI importpointnetwork script) when completed.
Rudimentary Python scripts do not seem too hard. The worst thing is there are numerous alternate ways to handle csv import, and 3 alternate data structures,
list or array or nparray.
- Brian
|