p3lib 1.1.95__tar.gz → 1.1.96__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.
- {p3lib-1.1.95 → p3lib-1.1.96}/PKG-INFO +1 -1
- {p3lib-1.1.95 → p3lib-1.1.96}/setup.cfg +1 -1
- {p3lib-1.1.95 → p3lib-1.1.96}/src/p3lib/boot_manager.py +14 -8
- {p3lib-1.1.95 → p3lib-1.1.96}/src/p3lib.egg-info/PKG-INFO +1 -1
- {p3lib-1.1.95 → p3lib-1.1.96}/LICENSE +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/README.md +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/pyproject.toml +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/src/p3lib/__init__.py +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/src/p3lib/ate.py +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/src/p3lib/bokeh_auth.py +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/src/p3lib/bokeh_gui.py +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/src/p3lib/conduit.py +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/src/p3lib/database_if.py +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/src/p3lib/helper.py +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/src/p3lib/json_networking.py +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/src/p3lib/mqtt_rpc.py +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/src/p3lib/netif.py +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/src/p3lib/netplotly.py +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/src/p3lib/ngt.py +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/src/p3lib/pconfig.py +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/src/p3lib/ssh.py +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/src/p3lib/table_plot.py +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/src/p3lib/uio.py +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/src/p3lib.egg-info/SOURCES.txt +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/src/p3lib.egg-info/dependency_links.txt +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/src/p3lib.egg-info/requires.txt +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/src/p3lib.egg-info/top_level.txt +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/tests/test_conduit.py +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/tests/test_json_networking.py +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/tests/test_netif.py +0 -0
- {p3lib-1.1.95 → p3lib-1.1.96}/tests/test_ssh.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: p3lib
|
3
|
-
Version: 1.1.
|
3
|
+
Version: 1.1.96
|
4
4
|
Summary: A group of python modules for networking, plotting data, config storage, automating boot scripts, ssh access and user input output.
|
5
5
|
Home-page: https://github.com/pjaos/p3lib
|
6
6
|
Author: Paul Austen
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[metadata]
|
2
2
|
name = p3lib
|
3
|
-
version = 1.1.
|
3
|
+
version = 1.1.96
|
4
4
|
author = Paul Austen
|
5
5
|
author_email = pausten.os@gmail.com
|
6
6
|
description = A group of python modules for networking, plotting data, config storage, automating boot scripts, ssh access and user input output.
|
@@ -40,7 +40,7 @@ class BootManager(object):
|
|
40
40
|
@return True if handled , False if not."""
|
41
41
|
handled = False
|
42
42
|
if options.check_auto_start:
|
43
|
-
BootManager.CheckAutoStartStatus(uio)
|
43
|
+
BootManager.CheckAutoStartStatus(uio, appName)
|
44
44
|
handled = True
|
45
45
|
|
46
46
|
elif options.enable_auto_start:
|
@@ -48,7 +48,7 @@ class BootManager(object):
|
|
48
48
|
handled = True
|
49
49
|
|
50
50
|
elif options.disable_auto_start:
|
51
|
-
BootManager.DisableAutoStart(uio)
|
51
|
+
BootManager.DisableAutoStart(uio, appName)
|
52
52
|
handled = True
|
53
53
|
|
54
54
|
return handled
|
@@ -68,15 +68,21 @@ class BootManager(object):
|
|
68
68
|
bootManager.add(argString=arsString, enableSyslog=enable_syslog)
|
69
69
|
|
70
70
|
@staticmethod
|
71
|
-
def DisableAutoStart(uio):
|
72
|
-
"""@brief Enable this program to auto start when the computer on which it is installed starts.
|
73
|
-
|
71
|
+
def DisableAutoStart(uio, appName):
|
72
|
+
"""@brief Enable this program to auto start when the computer on which it is installed starts.
|
73
|
+
@param uio A UIO instance.
|
74
|
+
@param appName The name of the app. This is used as the service name. If not set then
|
75
|
+
the name of the initially executed python file is used."""
|
76
|
+
bootManager = BootManager(uio=uio, ensureRootUser=True, appName=appName)
|
74
77
|
bootManager.remove()
|
75
78
|
|
76
79
|
@staticmethod
|
77
|
-
def CheckAutoStartStatus(uio):
|
78
|
-
"""@brief Check the status of a process previously set to auto start.
|
79
|
-
|
80
|
+
def CheckAutoStartStatus(uio, appName):
|
81
|
+
"""@brief Check the status of a process previously set to auto start.
|
82
|
+
@param uio A UIO instance.
|
83
|
+
@param appName The name of the app. This is used as the service name. If not set then
|
84
|
+
the name of the initially executed python file is used."""
|
85
|
+
bootManager = BootManager(uio=uio, appName=appName)
|
80
86
|
lines = bootManager.getStatus()
|
81
87
|
if lines and len(lines) > 0:
|
82
88
|
for line in lines:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: p3lib
|
3
|
-
Version: 1.1.
|
3
|
+
Version: 1.1.96
|
4
4
|
Summary: A group of python modules for networking, plotting data, config storage, automating boot scripts, ssh access and user input output.
|
5
5
|
Home-page: https://github.com/pjaos/p3lib
|
6
6
|
Author: Paul Austen
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|