variablesplus 2.2.0__tar.gz → 2.2.2__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.
- {variablesplus-2.2.0 → variablesplus-2.2.2}/PKG-INFO +8 -3
- {variablesplus-2.2.0 → variablesplus-2.2.2}/README.md +7 -2
- {variablesplus-2.2.0 → variablesplus-2.2.2}/pyproject.toml +1 -1
- {variablesplus-2.2.0 → variablesplus-2.2.2}/setup.py +1 -1
- {variablesplus-2.2.0 → variablesplus-2.2.2}/variablesplus.egg-info/PKG-INFO +8 -3
- {variablesplus-2.2.0 → variablesplus-2.2.2}/LICENSE +0 -0
- {variablesplus-2.2.0 → variablesplus-2.2.2}/setup.cfg +0 -0
- {variablesplus-2.2.0 → variablesplus-2.2.2}/variablesplus.egg-info/SOURCES.txt +0 -0
- {variablesplus-2.2.0 → variablesplus-2.2.2}/variablesplus.egg-info/dependency_links.txt +0 -0
- {variablesplus-2.2.0 → variablesplus-2.2.2}/variablesplus.egg-info/top_level.txt +0 -0
- {variablesplus-2.2.0 → variablesplus-2.2.2}/vp/__init__.py +0 -0
- {variablesplus-2.2.0 → variablesplus-2.2.2}/vp/variables_plus.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: variablesplus
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.2
|
|
4
4
|
Summary: A Python package for variables plus
|
|
5
5
|
Author: Egglord
|
|
6
6
|
License: MIT
|
|
@@ -12,12 +12,17 @@ Dynamic: requires-python
|
|
|
12
12
|
|
|
13
13
|
# variables_plus
|
|
14
14
|
|
|
15
|
-
A simple Python library to create, clear, read and delete global variables.
|
|
15
|
+
A simple Python library to create, clear, read, write and delete global variables.
|
|
16
16
|
|
|
17
17
|
This is my first python library :D
|
|
18
18
|
|
|
19
19
|
Commands:
|
|
20
20
|
vp.vp("create(variable=something)") # Remove =something to create a blank variable.
|
|
21
21
|
vp.vp("clear(variable)") # Leave clear() empty to clear all variables.
|
|
22
|
-
vp.vp("delete(variable)")
|
|
22
|
+
vp.vp("delete(variable)") # Variable needs to exist.
|
|
23
23
|
vp.vp("read(variable)") # Doesn't print it. Use print(vp.vp("read(variable)")) to print the variables contents.
|
|
24
|
+
vp.vp(“write(variable=something)”) # Variable needs to exist.
|
|
25
|
+
|
|
26
|
+
!NB!
|
|
27
|
+
Use: pip install variablesplus
|
|
28
|
+
But, to import it: import vb
|
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
# variables_plus
|
|
2
2
|
|
|
3
|
-
A simple Python library to create, clear, read and delete global variables.
|
|
3
|
+
A simple Python library to create, clear, read, write and delete global variables.
|
|
4
4
|
|
|
5
5
|
This is my first python library :D
|
|
6
6
|
|
|
7
7
|
Commands:
|
|
8
8
|
vp.vp("create(variable=something)") # Remove =something to create a blank variable.
|
|
9
9
|
vp.vp("clear(variable)") # Leave clear() empty to clear all variables.
|
|
10
|
-
vp.vp("delete(variable)")
|
|
10
|
+
vp.vp("delete(variable)") # Variable needs to exist.
|
|
11
11
|
vp.vp("read(variable)") # Doesn't print it. Use print(vp.vp("read(variable)")) to print the variables contents.
|
|
12
|
+
vp.vp(“write(variable=something)”) # Variable needs to exist.
|
|
13
|
+
|
|
14
|
+
!NB!
|
|
15
|
+
Use: pip install variablesplus
|
|
16
|
+
But, to import it: import vb
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: variablesplus
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.2
|
|
4
4
|
Summary: A Python package for variables plus
|
|
5
5
|
Author: Egglord
|
|
6
6
|
License: MIT
|
|
@@ -12,12 +12,17 @@ Dynamic: requires-python
|
|
|
12
12
|
|
|
13
13
|
# variables_plus
|
|
14
14
|
|
|
15
|
-
A simple Python library to create, clear, read and delete global variables.
|
|
15
|
+
A simple Python library to create, clear, read, write and delete global variables.
|
|
16
16
|
|
|
17
17
|
This is my first python library :D
|
|
18
18
|
|
|
19
19
|
Commands:
|
|
20
20
|
vp.vp("create(variable=something)") # Remove =something to create a blank variable.
|
|
21
21
|
vp.vp("clear(variable)") # Leave clear() empty to clear all variables.
|
|
22
|
-
vp.vp("delete(variable)")
|
|
22
|
+
vp.vp("delete(variable)") # Variable needs to exist.
|
|
23
23
|
vp.vp("read(variable)") # Doesn't print it. Use print(vp.vp("read(variable)")) to print the variables contents.
|
|
24
|
+
vp.vp(“write(variable=something)”) # Variable needs to exist.
|
|
25
|
+
|
|
26
|
+
!NB!
|
|
27
|
+
Use: pip install variablesplus
|
|
28
|
+
But, to import it: import vb
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|