p3lib 1.1.124__tar.gz → 1.1.125__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.
Files changed (25) hide show
  1. {p3lib-1.1.124 → p3lib-1.1.125}/PKG-INFO +1 -1
  2. {p3lib-1.1.124 → p3lib-1.1.125}/pyproject.toml +1 -1
  3. {p3lib-1.1.124 → p3lib-1.1.125}/src/p3lib/helper.py +67 -0
  4. {p3lib-1.1.124 → p3lib-1.1.125}/LICENSE +0 -0
  5. {p3lib-1.1.124 → p3lib-1.1.125}/README.md +0 -0
  6. {p3lib-1.1.124 → p3lib-1.1.125}/src/p3lib/__init__.py +0 -0
  7. {p3lib-1.1.124 → p3lib-1.1.125}/src/p3lib/ate.py +0 -0
  8. {p3lib-1.1.124 → p3lib-1.1.125}/src/p3lib/bokeh_auth.py +0 -0
  9. {p3lib-1.1.124 → p3lib-1.1.125}/src/p3lib/bokeh_gui.py +0 -0
  10. {p3lib-1.1.124 → p3lib-1.1.125}/src/p3lib/boot_manager.py +0 -0
  11. {p3lib-1.1.124 → p3lib-1.1.125}/src/p3lib/conduit.py +0 -0
  12. {p3lib-1.1.124 → p3lib-1.1.125}/src/p3lib/database_if.py +0 -0
  13. {p3lib-1.1.124 → p3lib-1.1.125}/src/p3lib/file_io.py +0 -0
  14. {p3lib-1.1.124 → p3lib-1.1.125}/src/p3lib/gnome_desktop_app.py +0 -0
  15. {p3lib-1.1.124 → p3lib-1.1.125}/src/p3lib/json_networking.py +0 -0
  16. {p3lib-1.1.124 → p3lib-1.1.125}/src/p3lib/login.html +0 -0
  17. {p3lib-1.1.124 → p3lib-1.1.125}/src/p3lib/mqtt_rpc.py +0 -0
  18. {p3lib-1.1.124 → p3lib-1.1.125}/src/p3lib/netif.py +0 -0
  19. {p3lib-1.1.124 → p3lib-1.1.125}/src/p3lib/netplotly.py +0 -0
  20. {p3lib-1.1.124 → p3lib-1.1.125}/src/p3lib/ngt.py +0 -0
  21. {p3lib-1.1.124 → p3lib-1.1.125}/src/p3lib/pconfig.py +0 -0
  22. {p3lib-1.1.124 → p3lib-1.1.125}/src/p3lib/ssh.py +0 -0
  23. {p3lib-1.1.124 → p3lib-1.1.125}/src/p3lib/table_plot.py +0 -0
  24. {p3lib-1.1.124 → p3lib-1.1.125}/src/p3lib/uio.py +0 -0
  25. {p3lib-1.1.124 → p3lib-1.1.125}/src/p3lib/windows_app.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: p3lib
3
- Version: 1.1.124
3
+ Version: 1.1.125
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
  License: MIT
6
6
  Author: Paul Austen
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "p3lib"
3
- version = "1.1.124"
3
+ version = "1.1.125"
4
4
  description = "A group of python modules for networking, plotting data, config storage, automating boot scripts, ssh access and user input output."
5
5
  authors = ["Paul Austen <pjaos@gmail.com>"]
6
6
  license = "MIT License"
@@ -9,6 +9,7 @@ import platform
9
9
  import json
10
10
  import traceback
11
11
  import socket
12
+ import inspect
12
13
 
13
14
  def initArgs(parser, lastCmdLineArg=None, checkHostArg=True):
14
15
  """This method is responsible for
@@ -451,3 +452,69 @@ def getProgramVersion():
451
452
  return -999.99
452
453
  return programVersion
453
454
 
455
+ def get_assets_folders():
456
+ """@return A list of all the assets folders found."""
457
+ searchFolders = []
458
+ assetsFolders = []
459
+ calling_file = None
460
+ # Get the full path to the python file that called this get_assets_folders() function.
461
+ frame = inspect.stack()[1]
462
+ module = inspect.getmodule(frame[0])
463
+ if module and hasattr(module, '__file__'):
464
+ calling_file = os.path.abspath(module.__file__)
465
+
466
+ if calling_file:
467
+ startup_path = os.path.dirname(calling_file)
468
+ searchFolders.append( os.path.join(startup_path, 'assets') )
469
+ pp1 = os.path.join(startup_path, '..')
470
+ searchFolders.append( os.path.join(pp1, 'assets') )
471
+ pp2 = os.path.join(pp1, '..')
472
+ searchFolders.append( os.path.join(pp2, 'assets') )
473
+ # Try all the site packages folders we know about.
474
+ for path in sys.path:
475
+ if 'site-packages' in path:
476
+ site_packages_path = path
477
+ searchFolders.append( os.path.join(site_packages_path, 'assets') )
478
+
479
+ for folder in searchFolders:
480
+ absPath = os.path.abspath(folder)
481
+ if os.path.isdir(absPath):
482
+ assetsFolders.append(absPath)
483
+
484
+ return assetsFolders
485
+
486
+ def get_assets_folder(raise_error=True):
487
+ """@brief Get the assets folder.
488
+ @param raise_error If True then raise an error if the assets folder is not found.
489
+ @return The abs assets folder path string."""
490
+ searchFolders = []
491
+ assetsFolder = None
492
+ calling_file = None
493
+ # Get the full path to the python file that called this get_assets_folder() function.
494
+ frame = inspect.stack()[1]
495
+ module = inspect.getmodule(frame[0])
496
+ if module and hasattr(module, '__file__'):
497
+ calling_file = os.path.abspath(module.__file__)
498
+
499
+ if calling_file:
500
+ startup_path = os.path.dirname(calling_file)
501
+ searchFolders.append( os.path.join(startup_path, 'assets') )
502
+ pp1 = os.path.join(startup_path, '..')
503
+ searchFolders.append( os.path.join(pp1, 'assets') )
504
+ pp2 = os.path.join(pp1, '..')
505
+ searchFolders.append( os.path.join(pp2, 'assets') )
506
+ # Try all the site packages folders we know about.
507
+ for path in sys.path:
508
+ if 'site-packages' in path:
509
+ site_packages_path = path
510
+ searchFolders.append( os.path.join(site_packages_path, 'assets') )
511
+
512
+ for folder in searchFolders:
513
+ absPath = os.path.abspath(folder)
514
+ if os.path.isdir(absPath):
515
+ assetsFolder = absPath
516
+
517
+ if raise_error and assetsFolder is None:
518
+ raise Exception('Failed to find assets folder.')
519
+
520
+ return assetsFolder
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