Possible utility apps

This commit is contained in:
RetiredWizard 2025-06-18 16:26:13 -04:00
parent 7480c1f4eb
commit 486d433a0b
6 changed files with 1327 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

1273
builtin_apps/PyDOS/code.py Normal file

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,4 @@
{
"title": "PyDOS",
"icon": "PyDOS.bmp"
}

View file

@ -0,0 +1,46 @@
import os
from supervisor import reload
try:
from codeop import compile_command
except:
pass
print("REPL in (Circuit-)Python (type exit to close)")
__cmd = ""
while True:
if 'compile_command' in dir():
# 9.0.0 alpha 7 or later supports multiple line statements
__line = input(",,, " if __cmd else "=>> " )
if __cmd:
__cmd += ("\n" + (" " if __line != "" else "") + __line)
else:
if __line.lower() == 'exit':
break
__cmd = __line
try:
if compile_command(__cmd):
exec(compile_command(__cmd))
__cmd = ""
except Exception as __err:
print("*ERROR* Exception:",str(__err))
__cmd = ""
else:
# Pre 9.0.0 alpha 7 code or Micropython (single line statments only)
__line = input("=>> ")
if __line.lower() == 'exit':
break
__result = None
try:
exec('__result='+__line)
except:
try:
exec(__line)
except Exception as err:
print("*ERROR* Exception:",str(err))
if __result != None and __line.find('=') == -1:
print(__result)
reload()

View file

@ -0,0 +1,4 @@
{
"title": "Virtual REPL",
"icon": "virtrepl.bmp"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB