dtPyAppFramework 1.3__tar.gz → 1.3.2__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.
- {dtpyappframework-1.3/src/dtPyAppFramework.egg-info → dtpyappframework-1.3.2}/PKG-INFO +1 -1
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework/application.py +5 -3
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework/settings/__init__.py +4 -1
- dtpyappframework-1.3.2/src/dtPyAppFramework/version.dat +1 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2/src/dtPyAppFramework.egg-info}/PKG-INFO +1 -1
- dtpyappframework-1.3/src/dtPyAppFramework/version.dat +0 -1
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/LICENCE.txt +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/MANIFEST.in +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/README.md +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/pyproject.toml +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/requirements.txt +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/setup.cfg +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/setup.py +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework/__init__.py +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework/decorators/__init__.py +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework/logging/__init__.py +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework/logging/default_logging.py +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework/misc/__init__.py +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework/paths/__init__.py +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework/process/__init__.py +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework/process/multiprocessing.py +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework/resources/__init__.py +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework/settings/secrets/__init__.py +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework/settings/secrets/aws_secret_store.py +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework/settings/secrets/azure_secret_store.py +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework/settings/secrets/local_secret_store.py +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework/settings/secrets/secret_store.py +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework/settings/settings_reader.py +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework.egg-info/SOURCES.txt +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework.egg-info/dependency_links.txt +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework.egg-info/requires.txt +0 -0
- {dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dtPyAppFramework
|
|
3
|
-
Version: 1.3
|
|
3
|
+
Version: 1.3.2
|
|
4
4
|
Summary: A Python library for common features in application development.
|
|
5
5
|
Author-email: Digital-Thought <dev@digital-thought.org>
|
|
6
6
|
Maintainer-email: Digital-Thought <dev@digital-thought.org>
|
|
@@ -100,10 +100,14 @@ class AbstractApp(object):
|
|
|
100
100
|
arg_parser.add_argument('--init', action='store_true', required=False, help='Initialise environment')
|
|
101
101
|
arg_parser.add_argument('--add_secret', action='store_true', required=False, help='Add secret to store')
|
|
102
102
|
arg_parser.add_argument('--run', action='store_true', required=False, help='Run Processor')
|
|
103
|
-
|
|
103
|
+
arg_parser.add_argument('--single_folder', action='store_true', required=False, help='Keeps all Directories in a single folder')
|
|
104
|
+
self.define_args(arg_parser)
|
|
104
105
|
# Check specific states and add corresponding arguments
|
|
105
106
|
opts, rem_args = arg_parser.parse_known_args()
|
|
106
107
|
|
|
108
|
+
if opts.single_folder:
|
|
109
|
+
os.environ['DEV_MODE'] = "True"
|
|
110
|
+
|
|
107
111
|
if opts.init:
|
|
108
112
|
arg_parser.add_argument('--password', action='store', type=str, required=False,
|
|
109
113
|
help="Secrets Store password")
|
|
@@ -111,8 +115,6 @@ class AbstractApp(object):
|
|
|
111
115
|
elif opts.add_secret:
|
|
112
116
|
arg_parser.add_argument('--name', action='store', type=str, required=True, help="Secret Name")
|
|
113
117
|
arg_parser.add_argument('--value', action='store', type=str, required=True, help="Secret Value")
|
|
114
|
-
else:
|
|
115
|
-
self.define_args(arg_parser)
|
|
116
118
|
|
|
117
119
|
def run(self):
|
|
118
120
|
"""
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.3.2
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dtPyAppFramework
|
|
3
|
-
Version: 1.3
|
|
3
|
+
Version: 1.3.2
|
|
4
4
|
Summary: A Python library for common features in application development.
|
|
5
5
|
Author-email: Digital-Thought <dev@digital-thought.org>
|
|
6
6
|
Maintainer-email: Digital-Thought <dev@digital-thought.org>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
1.3
|
|
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
|
{dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework/logging/default_logging.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework/process/multiprocessing.py
RENAMED
|
File without changes
|
|
File without changes
|
{dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework/settings/secrets/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework/settings/settings_reader.py
RENAMED
|
File without changes
|
|
File without changes
|
{dtpyappframework-1.3 → dtpyappframework-1.3.2}/src/dtPyAppFramework.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|