multiscript-windows 1.0.5__tar.gz → 1.0.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {multiscript_windows-1.0.5 → multiscript_windows-1.0.6}/PKG-INFO +8 -4
- {multiscript_windows-1.0.5 → multiscript_windows-1.0.6}/README.md +7 -3
- {multiscript_windows-1.0.5 → multiscript_windows-1.0.6}/pyproject.toml +1 -1
- {multiscript_windows-1.0.5 → multiscript_windows-1.0.6}/src/multiscript_windows.egg-info/PKG-INFO +8 -4
- {multiscript_windows-1.0.5 → multiscript_windows-1.0.6}/LICENSE +0 -0
- {multiscript_windows-1.0.5 → multiscript_windows-1.0.6}/setup.cfg +0 -0
- {multiscript_windows-1.0.5 → multiscript_windows-1.0.6}/src/multiscript/__init__.py +0 -0
- {multiscript_windows-1.0.5 → multiscript_windows-1.0.6}/src/multiscript/multiscript.py +0 -0
- {multiscript_windows-1.0.5 → multiscript_windows-1.0.6}/src/multiscript_windows.egg-info/SOURCES.txt +0 -0
- {multiscript_windows-1.0.5 → multiscript_windows-1.0.6}/src/multiscript_windows.egg-info/dependency_links.txt +0 -0
- {multiscript_windows-1.0.5 → multiscript_windows-1.0.6}/src/multiscript_windows.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: multiscript-windows
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.6
|
|
4
4
|
Summary: A lightweight wrapper to run Batch and VBScript within Python.
|
|
5
5
|
Author-email: KingTheCoder <kingjd490@gmail.com>
|
|
6
6
|
License: GPL-3.0-only
|
|
@@ -42,7 +42,7 @@ Example:
|
|
|
42
42
|
```
|
|
43
43
|
import multiscript
|
|
44
44
|
|
|
45
|
-
prn = batchscript(
|
|
45
|
+
prn = multiscript.batchscript(
|
|
46
46
|
r"""
|
|
47
47
|
move test.txt .\destination
|
|
48
48
|
del deleteme.png
|
|
@@ -62,7 +62,7 @@ Example:
|
|
|
62
62
|
```
|
|
63
63
|
import multiscript
|
|
64
64
|
|
|
65
|
-
vbscript(
|
|
65
|
+
multiscript.vbscript(
|
|
66
66
|
r"""
|
|
67
67
|
MsgBox "Hi, there!", 64 + vbOkOnly, "Hi!"
|
|
68
68
|
MsgBox "Goodbye!", 64 + vbOkOnly, "Bye!"
|
|
@@ -80,7 +80,7 @@ Example:
|
|
|
80
80
|
import multiscript
|
|
81
81
|
|
|
82
82
|
print(
|
|
83
|
-
javascript(
|
|
83
|
+
multiscript.javascript(
|
|
84
84
|
"""
|
|
85
85
|
WScript.Echo("Hello, World!")
|
|
86
86
|
"""
|
|
@@ -120,6 +120,10 @@ Fixed a bug in `__init__.py` where it would not import nor export the `javascrip
|
|
|
120
120
|
|
|
121
121
|
Fixed unclear wording in `README.md`.
|
|
122
122
|
|
|
123
|
+
## 1.0.6
|
|
124
|
+
|
|
125
|
+
Fixed examples in `README.md`.
|
|
126
|
+
|
|
123
127
|
## Some Extra
|
|
124
128
|
|
|
125
129
|
Hey, thanks for reading all the way to the end!
|
|
@@ -26,7 +26,7 @@ Example:
|
|
|
26
26
|
```
|
|
27
27
|
import multiscript
|
|
28
28
|
|
|
29
|
-
prn = batchscript(
|
|
29
|
+
prn = multiscript.batchscript(
|
|
30
30
|
r"""
|
|
31
31
|
move test.txt .\destination
|
|
32
32
|
del deleteme.png
|
|
@@ -46,7 +46,7 @@ Example:
|
|
|
46
46
|
```
|
|
47
47
|
import multiscript
|
|
48
48
|
|
|
49
|
-
vbscript(
|
|
49
|
+
multiscript.vbscript(
|
|
50
50
|
r"""
|
|
51
51
|
MsgBox "Hi, there!", 64 + vbOkOnly, "Hi!"
|
|
52
52
|
MsgBox "Goodbye!", 64 + vbOkOnly, "Bye!"
|
|
@@ -64,7 +64,7 @@ Example:
|
|
|
64
64
|
import multiscript
|
|
65
65
|
|
|
66
66
|
print(
|
|
67
|
-
javascript(
|
|
67
|
+
multiscript.javascript(
|
|
68
68
|
"""
|
|
69
69
|
WScript.Echo("Hello, World!")
|
|
70
70
|
"""
|
|
@@ -104,6 +104,10 @@ Fixed a bug in `__init__.py` where it would not import nor export the `javascrip
|
|
|
104
104
|
|
|
105
105
|
Fixed unclear wording in `README.md`.
|
|
106
106
|
|
|
107
|
+
## 1.0.6
|
|
108
|
+
|
|
109
|
+
Fixed examples in `README.md`.
|
|
110
|
+
|
|
107
111
|
## Some Extra
|
|
108
112
|
|
|
109
113
|
Hey, thanks for reading all the way to the end!
|
{multiscript_windows-1.0.5 → multiscript_windows-1.0.6}/src/multiscript_windows.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: multiscript-windows
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.6
|
|
4
4
|
Summary: A lightweight wrapper to run Batch and VBScript within Python.
|
|
5
5
|
Author-email: KingTheCoder <kingjd490@gmail.com>
|
|
6
6
|
License: GPL-3.0-only
|
|
@@ -42,7 +42,7 @@ Example:
|
|
|
42
42
|
```
|
|
43
43
|
import multiscript
|
|
44
44
|
|
|
45
|
-
prn = batchscript(
|
|
45
|
+
prn = multiscript.batchscript(
|
|
46
46
|
r"""
|
|
47
47
|
move test.txt .\destination
|
|
48
48
|
del deleteme.png
|
|
@@ -62,7 +62,7 @@ Example:
|
|
|
62
62
|
```
|
|
63
63
|
import multiscript
|
|
64
64
|
|
|
65
|
-
vbscript(
|
|
65
|
+
multiscript.vbscript(
|
|
66
66
|
r"""
|
|
67
67
|
MsgBox "Hi, there!", 64 + vbOkOnly, "Hi!"
|
|
68
68
|
MsgBox "Goodbye!", 64 + vbOkOnly, "Bye!"
|
|
@@ -80,7 +80,7 @@ Example:
|
|
|
80
80
|
import multiscript
|
|
81
81
|
|
|
82
82
|
print(
|
|
83
|
-
javascript(
|
|
83
|
+
multiscript.javascript(
|
|
84
84
|
"""
|
|
85
85
|
WScript.Echo("Hello, World!")
|
|
86
86
|
"""
|
|
@@ -120,6 +120,10 @@ Fixed a bug in `__init__.py` where it would not import nor export the `javascrip
|
|
|
120
120
|
|
|
121
121
|
Fixed unclear wording in `README.md`.
|
|
122
122
|
|
|
123
|
+
## 1.0.6
|
|
124
|
+
|
|
125
|
+
Fixed examples in `README.md`.
|
|
126
|
+
|
|
123
127
|
## Some Extra
|
|
124
128
|
|
|
125
129
|
Hey, thanks for reading all the way to the end!
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{multiscript_windows-1.0.5 → multiscript_windows-1.0.6}/src/multiscript_windows.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|