Skip to content

Commit 2a42216

Browse files
authored
Update README.md
1 parent d704819 commit 2a42216

File tree

1 file changed

+3
-13
lines changed

1 file changed

+3
-13
lines changed

README.md

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66
+ Improve function, add new `newengine`
77
+ Enhanced PyWimVBA performance
88
+ Keeps the old PyWimVBA function (In version 5.2) and renames it to `RunPyOld`
9-
- Add new `RunPyWid()` - with `showcmd=True` function doesn't need to create file
10-
- Remove `keepFileData` attributes and add `showcmd`
11-
- Added `iline` attributes
9+
- ~~Add new `RunPyWid()` - with `showcmd=True` function doesn't need to create file~~ (Removed!)
1210
# Where's the lower version of PythonWimVBA?
1311
> **Lower Version is tested privately; some versions are publicly released, but they are pre-release. They're outdated, unsecure and unstable, so please use only versions 5.2 or above**.
1412
@@ -37,6 +35,8 @@
3735
+ [Optional] UseDebug: Show cmd that runs python code and keep it alive with it's output [Use debug to catch errors, the output file may not catch them. So when debug is enabled, Output file does nothing.
3836
+ E.x : `MsgBox RunPy("Welcome to \'Python With VBA!\'")`
3937

38+
> In lastest fix, Remove RunPyOld, RunPyWid (Issued and Too Unstable)
39+
4040
**Command:** `RunPyWid(code, [pythonPath = "python"], [showcmd = True], [iline = False], [UseDebug =False])`
4141
+ Code splitting by ";;" , e.x : `import time;;time.sleep(5)`
4242
+ With `showcmd=True` performance will be better than `showcmd=False` (because of `showcmd=False` must create logfile to catch log, `showcmd=True` mustn't)
@@ -57,13 +57,3 @@
5757
+ [Optional] UseDebug: Show cmd that runs python code and keep it alive with it's output [Use debug to catch errors, the output file may not catch them. So when debug is enabled, Output file does nothing.
5858

5959

60-
---
61-
62-
| Information | `RunPy()` | `RunPyWid()` |`RunPyOld()` |
63-
| ----------- | ----------- | ----------- | ----------- |
64-
| Performance | :star: ( Works good, more in `newengine=true` |:zap: (Amazing) | :+1: (Old but not wasted) |
65-
| Easy-Debug | :star2: (`UseDebug` for it) | :star: (`UseDebug` available, but a little bad) | :star2: (`UseDebug` for it)|
66-
| Easy-To-Use | :ok_hand: (Easy attributes) | :+1: (A little hard to start) |:ok_hand: (Easy attributes) |
67-
| Cache file (codefile & logfile) | :raised_hands: (With `newengine=True`, only needs to create logfile)| :muscle: (No cache-file, but `showcmd=True` requires logfile) | :turtle: (Use both cache file and logfile) |
68-
| Stable & error | :star2: (Works well) | :neutral_face: (New releases,contains many errors)| :star2: (Stable) |
69-

0 commit comments

Comments
 (0)