easycoder 250722.3__py2.py3-none-any.whl → 250722.5__py2.py3-none-any.whl

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.

Potentially problematic release.


This version of easycoder might be problematic. Click here for more details.

easycoder/__init__.py CHANGED
@@ -5,10 +5,10 @@ from .ec_compiler import *
5
5
  from .ec_condition import *
6
6
  from .ec_core import *
7
7
  from .ec_handler import *
8
+ from .ec_keyboard import *
8
9
  from .ec_program import *
10
+ from .ec_pyside import *
9
11
  from .ec_timestamp import *
10
12
  from .ec_value import *
11
- from .ec_pyside import *
12
- from .ec_keyboard import *
13
13
 
14
- __version__ = "250722.3"
14
+ __version__ = "250722.5"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: easycoder
3
- Version: 250722.3
3
+ Version: 250722.5
4
4
  Summary: Rapid scripting in English
5
5
  Keywords: compiler,scripting,prototyping,programming,coding,python,low code,hypertalk,computer language,learn to code
6
6
  Author-email: Graham Trott <gtanyware@gmail.com>
@@ -1,5 +1,4 @@
1
- easycoder/README.md,sha256=BVXmYphcTJ6q6RN_9L6HtQukgCnOjSLVIsTM3lk-9aM,587
2
- easycoder/__init__.py,sha256=AtxTbPDj3n_9L6R1X8AA59NMN4Z9RVRLGJ2KGZZF6jI,314
1
+ easycoder/__init__.py,sha256=GFP6WdzLGMBU02FVAFR3VS2U2VIRtvuWzQwQxwh8hyQ,314
3
2
  easycoder/ec_classes.py,sha256=PWPaJuTfaWD4-tgT-2WWOgeFV_jXxlxyKCxvXyylCUU,1824
4
3
  easycoder/ec_compiler.py,sha256=9byLqJZgMHAyFFyD8eGhY77oTsY1GY1aVcVrU4JAbd4,5287
5
4
  easycoder/ec_condition.py,sha256=YXvSBQKEzKGCcgUGo3Qp8iHolXmm2BpEm0NimSDszIM,785
@@ -9,8 +8,8 @@ easycoder/ec_program.py,sha256=SHg8NV9g-DclSWz8pQzgAiElreoYrI1FR1NrZS4_hIA,9968
9
8
  easycoder/ec_pyside.py,sha256=DkTw8SIEutDti7crhWQeMd-7ybErdR9L-IbQS7UVUbg,42184
10
9
  easycoder/ec_timestamp.py,sha256=myQnnF-mT31_1dpQKv2VEAu4BCcbypvMdzq7_DUi1xc,277
11
10
  easycoder/ec_value.py,sha256=zgDJTJhIg3yOvmnnKIfccIizmIhGbtvL_ghLTL1T5fg,2516
12
- easycoder-250722.3.dist-info/entry_points.txt,sha256=JXAZbenl0TnsIft2FcGJbJ-4qoztVu2FuT8PFmWFexM,44
13
- easycoder-250722.3.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
14
- easycoder-250722.3.dist-info/WHEEL,sha256=ssQ84EZ5gH1pCOujd3iW7HClo_O_aDaClUbX4B8bjKY,100
15
- easycoder-250722.3.dist-info/METADATA,sha256=ROPtmVHW5sgdlCb4dIf0t68XCL4V7mscPA-YhvUFB1Y,6875
16
- easycoder-250722.3.dist-info/RECORD,,
11
+ easycoder-250722.5.dist-info/entry_points.txt,sha256=JXAZbenl0TnsIft2FcGJbJ-4qoztVu2FuT8PFmWFexM,44
12
+ easycoder-250722.5.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
13
+ easycoder-250722.5.dist-info/WHEEL,sha256=ssQ84EZ5gH1pCOujd3iW7HClo_O_aDaClUbX4B8bjKY,100
14
+ easycoder-250722.5.dist-info/METADATA,sha256=gF4ifS2ImXa46SnD5waWP_FF6jS_Oe7W8vJ0A6NhU4c,6875
15
+ easycoder-250722.5.dist-info/RECORD,,
easycoder/README.md DELETED
@@ -1,6 +0,0 @@
1
- # EasyCode source code
2
- These are the Python files that comprise **_EasyCoder_**.
3
-
4
- **_EasyCoder_** has a small number of third-party dependencies. A minor one is `pytz`, which handles timezones. The biggest one by far is `PySimpleGUI`, a comprehensive Python graphics library.
5
-
6
- If an **_EasyCoder_** script filename ends with `.ecs` it's a command-line script. If it ends with `.ecg` it's a script for a graphical application and will cause `PySimpleGUI` to be imported. Obviously this will only work on a GUI-based system, whereas command-line scripts will run anywhere there is Python.