ezscript 0.2.0__tar.gz → 0.2.0.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.
- ezscript-0.2.0.2/PKG-INFO +44 -0
- ezscript-0.2.0.2/README.md +35 -0
- ezscript-0.2.0.2/ezscript.egg-info/PKG-INFO +44 -0
- {ezscript-0.2.0 → ezscript-0.2.0.2}/ezscript.egg-info/SOURCES.txt +1 -0
- {ezscript-0.2.0 → ezscript-0.2.0.2}/pyproject.toml +2 -1
- ezscript-0.2.0/PKG-INFO +0 -7
- ezscript-0.2.0/ezscript.egg-info/PKG-INFO +0 -7
- {ezscript-0.2.0 → ezscript-0.2.0.2}/ezscript.egg-info/dependency_links.txt +0 -0
- {ezscript-0.2.0 → ezscript-0.2.0.2}/ezscript.egg-info/entry_points.txt +0 -0
- {ezscript-0.2.0 → ezscript-0.2.0.2}/ezscript.egg-info/top_level.txt +0 -0
- {ezscript-0.2.0 → ezscript-0.2.0.2}/setup.cfg +0 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ezscript
|
|
3
|
+
Version: 0.2.0.2
|
|
4
|
+
Summary: A custom English-like shorthand transpiler for Python. (yes, its vibe coded. please dont put me in a shooting range)
|
|
5
|
+
Author: zatr554 & Gemini
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: Operating System :: OS Independent
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# ezscript: for easier scripting
|
|
11
|
+
>still VERY WIP so dont use it for complicated stuff.
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
this project helps improve Python scripting for new users. please be nice enought to improve the project! there are only 5 supported features right now, so dont use for heavy coding!
|
|
15
|
+
|
|
16
|
+
# how to use it:
|
|
17
|
+
|
|
18
|
+
The Package comes with a new python syntax: `ezpy`. use it to compile your `.ezpy` scripts.
|
|
19
|
+
|
|
20
|
+
## `ezpy` usage
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
its easy as hell. just use `ezpy (script).ezpy`, whereas "(script)" is the name of your script. it then outputs the script with the exact same name, but now its a python script! yay!
|
|
24
|
+
|
|
25
|
+
# possible syntax as of current state:
|
|
26
|
+
|
|
27
|
+
* **`printf(...)`**: Automatic f-string formatting shortcut (`print(f...)`).
|
|
28
|
+
* **`repeat N times:`**: Clean count-based loops.
|
|
29
|
+
* **`repeat while <condition>:`**: Readable conditional loops.
|
|
30
|
+
* **`ask "..." -> var`**: Intuitive user input assignments.
|
|
31
|
+
* **`if <expr> fails:`**: Elegant guard clauses with stdout buffer verification.
|
|
32
|
+
* **`if <expr1> isnt <expr2>:`**: Human-readable inequality checks.
|
|
33
|
+
|
|
34
|
+
# help ezscript improve!
|
|
35
|
+
|
|
36
|
+
just change transcriber.py is enough to change how ezscript behaves!
|
|
37
|
+
|
|
38
|
+
### notes:
|
|
39
|
+
|
|
40
|
+
- when you compile `.ezpy` files into `.py` files, you cant really change how it behaves directly from the python script. the `.py` converted script is very messy and uses lots of conversion. make sure you look out! <small>it even says so in the commented sections ezpy creates.</small>
|
|
41
|
+
|
|
42
|
+
# contributors
|
|
43
|
+
- me
|
|
44
|
+
- Gemini
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# ezscript: for easier scripting
|
|
2
|
+
>still VERY WIP so dont use it for complicated stuff.
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
this project helps improve Python scripting for new users. please be nice enought to improve the project! there are only 5 supported features right now, so dont use for heavy coding!
|
|
6
|
+
|
|
7
|
+
# how to use it:
|
|
8
|
+
|
|
9
|
+
The Package comes with a new python syntax: `ezpy`. use it to compile your `.ezpy` scripts.
|
|
10
|
+
|
|
11
|
+
## `ezpy` usage
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
its easy as hell. just use `ezpy (script).ezpy`, whereas "(script)" is the name of your script. it then outputs the script with the exact same name, but now its a python script! yay!
|
|
15
|
+
|
|
16
|
+
# possible syntax as of current state:
|
|
17
|
+
|
|
18
|
+
* **`printf(...)`**: Automatic f-string formatting shortcut (`print(f...)`).
|
|
19
|
+
* **`repeat N times:`**: Clean count-based loops.
|
|
20
|
+
* **`repeat while <condition>:`**: Readable conditional loops.
|
|
21
|
+
* **`ask "..." -> var`**: Intuitive user input assignments.
|
|
22
|
+
* **`if <expr> fails:`**: Elegant guard clauses with stdout buffer verification.
|
|
23
|
+
* **`if <expr1> isnt <expr2>:`**: Human-readable inequality checks.
|
|
24
|
+
|
|
25
|
+
# help ezscript improve!
|
|
26
|
+
|
|
27
|
+
just change transcriber.py is enough to change how ezscript behaves!
|
|
28
|
+
|
|
29
|
+
### notes:
|
|
30
|
+
|
|
31
|
+
- when you compile `.ezpy` files into `.py` files, you cant really change how it behaves directly from the python script. the `.py` converted script is very messy and uses lots of conversion. make sure you look out! <small>it even says so in the commented sections ezpy creates.</small>
|
|
32
|
+
|
|
33
|
+
# contributors
|
|
34
|
+
- me
|
|
35
|
+
- Gemini
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ezscript
|
|
3
|
+
Version: 0.2.0.2
|
|
4
|
+
Summary: A custom English-like shorthand transpiler for Python. (yes, its vibe coded. please dont put me in a shooting range)
|
|
5
|
+
Author: zatr554 & Gemini
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: Operating System :: OS Independent
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# ezscript: for easier scripting
|
|
11
|
+
>still VERY WIP so dont use it for complicated stuff.
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
this project helps improve Python scripting for new users. please be nice enought to improve the project! there are only 5 supported features right now, so dont use for heavy coding!
|
|
15
|
+
|
|
16
|
+
# how to use it:
|
|
17
|
+
|
|
18
|
+
The Package comes with a new python syntax: `ezpy`. use it to compile your `.ezpy` scripts.
|
|
19
|
+
|
|
20
|
+
## `ezpy` usage
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
its easy as hell. just use `ezpy (script).ezpy`, whereas "(script)" is the name of your script. it then outputs the script with the exact same name, but now its a python script! yay!
|
|
24
|
+
|
|
25
|
+
# possible syntax as of current state:
|
|
26
|
+
|
|
27
|
+
* **`printf(...)`**: Automatic f-string formatting shortcut (`print(f...)`).
|
|
28
|
+
* **`repeat N times:`**: Clean count-based loops.
|
|
29
|
+
* **`repeat while <condition>:`**: Readable conditional loops.
|
|
30
|
+
* **`ask "..." -> var`**: Intuitive user input assignments.
|
|
31
|
+
* **`if <expr> fails:`**: Elegant guard clauses with stdout buffer verification.
|
|
32
|
+
* **`if <expr1> isnt <expr2>:`**: Human-readable inequality checks.
|
|
33
|
+
|
|
34
|
+
# help ezscript improve!
|
|
35
|
+
|
|
36
|
+
just change transcriber.py is enough to change how ezscript behaves!
|
|
37
|
+
|
|
38
|
+
### notes:
|
|
39
|
+
|
|
40
|
+
- when you compile `.ezpy` files into `.py` files, you cant really change how it behaves directly from the python script. the `.py` converted script is very messy and uses lots of conversion. make sure you look out! <small>it even says so in the commented sections ezpy creates.</small>
|
|
41
|
+
|
|
42
|
+
# contributors
|
|
43
|
+
- me
|
|
44
|
+
- Gemini
|
|
@@ -4,8 +4,9 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "ezscript"
|
|
7
|
-
version = "0.2.0"
|
|
7
|
+
version = "0.2.0.2"
|
|
8
8
|
description = "A custom English-like shorthand transpiler for Python. (yes, its vibe coded. please dont put me in a shooting range)"
|
|
9
|
+
readme = { file = "README.md", content-type = "text/markdown" }
|
|
9
10
|
authors = [{ name = "zatr554 & Gemini" }]
|
|
10
11
|
dependencies = []
|
|
11
12
|
classifiers = [
|
ezscript-0.2.0/PKG-INFO
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: ezscript
|
|
3
|
-
Version: 0.2.0
|
|
4
|
-
Summary: A custom English-like shorthand transpiler for Python. (yes, its vibe coded. please dont put me in a shooting range)
|
|
5
|
-
Author: zatr554 & Gemini
|
|
6
|
-
Classifier: Programming Language :: Python :: 3
|
|
7
|
-
Classifier: Operating System :: OS Independent
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: ezscript
|
|
3
|
-
Version: 0.2.0
|
|
4
|
-
Summary: A custom English-like shorthand transpiler for Python. (yes, its vibe coded. please dont put me in a shooting range)
|
|
5
|
-
Author: zatr554 & Gemini
|
|
6
|
-
Classifier: Programming Language :: Python :: 3
|
|
7
|
-
Classifier: Operating System :: OS Independent
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|