tinyssg 0.0.6__py3-none-any.whl → 0.0.9__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.
- tinyssg/{__main__.py → tinyssg.py} +21 -6
- {tinyssg-0.0.6.dist-info → tinyssg-0.0.9.dist-info}/METADATA +1 -1
- tinyssg-0.0.9.dist-info/RECORD +5 -0
- tinyssg-0.0.6.dist-info/RECORD +0 -5
- {tinyssg-0.0.6.dist-info → tinyssg-0.0.9.dist-info}/WHEEL +0 -0
- {tinyssg-0.0.6.dist-info → tinyssg-0.0.9.dist-info}/top_level.txt +0 -0
@@ -63,14 +63,21 @@ class TinySSGUtility:
|
|
63
63
|
return result
|
64
64
|
|
65
65
|
@classmethod
|
66
|
-
def get_fullpath(cls, args: dict, pathkey: str) -> str:
|
66
|
+
def get_fullpath(cls, args: dict, pathkey: str = '') -> str:
|
67
67
|
"""
|
68
68
|
Get the full path from the relative path
|
69
69
|
"""
|
70
70
|
if isinstance(args['curdir'], str) and len(args['curdir']) > 0:
|
71
|
-
|
71
|
+
basedir = args['curdir']
|
72
72
|
else:
|
73
|
-
|
73
|
+
basedir = os.getcwd()
|
74
|
+
|
75
|
+
if isinstance(args[pathkey], str) and len(args[pathkey]) > 0:
|
76
|
+
result = os.path.join(basedir, args[pathkey])
|
77
|
+
else:
|
78
|
+
result = basedir
|
79
|
+
|
80
|
+
return result
|
74
81
|
|
75
82
|
@classmethod
|
76
83
|
def clear_output(cls, output_full_path: str) -> None:
|
@@ -103,6 +110,7 @@ class TinySSGUtility:
|
|
103
110
|
|
104
111
|
print(message)
|
105
112
|
|
113
|
+
@classmethod
|
106
114
|
def error_print(cls, message: str) -> None:
|
107
115
|
"""
|
108
116
|
Output error message
|
@@ -482,7 +490,7 @@ class TinySSGDebug:
|
|
482
490
|
"""
|
483
491
|
Output the server stop message
|
484
492
|
"""
|
485
|
-
TinySSGUtility.error_print(
|
493
|
+
TinySSGUtility.error_print(f"Server return code:{process.poll()}")
|
486
494
|
TinySSGUtility.error_print('Server Output:\n')
|
487
495
|
TinySSGUtility.error_print(process.stdout.read() if process.stdout else '')
|
488
496
|
TinySSGUtility.error_print(process.stderr.read() if process.stderr else '')
|
@@ -566,13 +574,20 @@ class TinySSGLauncher:
|
|
566
574
|
"""
|
567
575
|
url = f"http://localhost:{args['port']}/{args['output']}/"
|
568
576
|
|
577
|
+
is_jupyter = False
|
578
|
+
|
569
579
|
try:
|
570
580
|
from IPython import get_ipython # type: ignore
|
571
581
|
env = get_ipython().__class__.__name__
|
572
582
|
if env == 'ZMQInteractiveShell':
|
573
|
-
|
574
|
-
display.display(display.IFrame(url, width=args['jwidth'], height=args['jheight']))
|
583
|
+
is_jupyter = True
|
575
584
|
except: # noqa: E722
|
585
|
+
pass
|
586
|
+
|
587
|
+
if is_jupyter:
|
588
|
+
from IPython import display
|
589
|
+
display.display(display.IFrame(url, width=args['jwidth'], height=args['jheight']))
|
590
|
+
else:
|
576
591
|
webbrowser.open(url)
|
577
592
|
|
578
593
|
@classmethod
|
@@ -0,0 +1,5 @@
|
|
1
|
+
tinyssg/tinyssg.py,sha256=uaCHaXdBRlKRWy4sdsPLIn738hEqQfWkxF7KUjUmon0,27415
|
2
|
+
tinyssg-0.0.9.dist-info/METADATA,sha256=MpGnTT6B_3j3fz3XlY3rHFRPEjb60P61fWe3LXOPqkM,5068
|
3
|
+
tinyssg-0.0.9.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
4
|
+
tinyssg-0.0.9.dist-info/top_level.txt,sha256=8u1XtPYCatbklb6u3NbJbFUbwA8nDKZ6cY3FScGwJDQ,8
|
5
|
+
tinyssg-0.0.9.dist-info/RECORD,,
|
tinyssg-0.0.6.dist-info/RECORD
DELETED
@@ -1,5 +0,0 @@
|
|
1
|
-
tinyssg/__main__.py,sha256=7tBWchAxMWd_3YxUcbSxCG0dYF9JQ7UeKVY9_yO7Apc,27125
|
2
|
-
tinyssg-0.0.6.dist-info/METADATA,sha256=KBOjK201bmyqmG9K5IDgzO0Xj617C3S4z4qDCrwRnB4,5068
|
3
|
-
tinyssg-0.0.6.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
4
|
-
tinyssg-0.0.6.dist-info/top_level.txt,sha256=8u1XtPYCatbklb6u3NbJbFUbwA8nDKZ6cY3FScGwJDQ,8
|
5
|
-
tinyssg-0.0.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|