flask-app-class 0.1.0__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.
@@ -0,0 +1,40 @@
1
+ Metadata-Version: 2.4
2
+ Name: flask_app_class
3
+ Version: 0.1.0
4
+ Summary: Class based tool to build Flask applications that include socketio and authentication
5
+ Author-email: Thomas Dunteman <git@learningtopi.com>
6
+ Project-URL: homepage, https://github.com/LearningToPi/flask_app_class
7
+ Project-URL: bug tracker, https://github.com/LearningToPi/flask_app_class/issues
8
+ Project-URL: source code, https://github.com/LearningToPi/flask_app_class
9
+ Keywords: flask,socketio
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Framework :: Flask
13
+ Classifier: Environment :: Web Environment
14
+ Requires-Python: >=3.12
15
+ Description-Content-Type: text/markdown
16
+ Requires-Dist: aiosmtpd==1.4.6
17
+ Requires-Dist: atpublic==7.0.0
18
+ Requires-Dist: attrs==25.4.0
19
+ Requires-Dist: azure-communication-email==1.1.0
20
+ Requires-Dist: azure-core==1.38.0
21
+ Requires-Dist: azure-identity==1.25.1
22
+ Requires-Dist: certifi==2026.1.4
23
+ Requires-Dist: cffi==2.0.0
24
+ Requires-Dist: charset-normalizer==3.4.4
25
+ Requires-Dist: cryptography==46.0.3
26
+ Requires-Dist: idna==3.11
27
+ Requires-Dist: ipcalc==1.99.0
28
+ Requires-Dist: isodate==0.7.2
29
+ Requires-Dist: logging-handler==1.0.7
30
+ Requires-Dist: msal==1.34.0
31
+ Requires-Dist: msal-extensions==1.3.1
32
+ Requires-Dist: parameter-verification==0.1.1
33
+ Requires-Dist: pycparser==3.0
34
+ Requires-Dist: PyJWT==2.10.1
35
+ Requires-Dist: queue_processor==1.1.2
36
+ Requires-Dist: requests==2.32.5
37
+ Requires-Dist: six==1.17.0
38
+ Requires-Dist: typing_extensions==4.15.0
39
+ Requires-Dist: urllib3==2.6.3
40
+ Requires-Dist: validators==0.35.0
@@ -0,0 +1,53 @@
1
+ [project]
2
+ name = "flask_app_class"
3
+ version = "0.1.0"
4
+ description = "Class based tool to build Flask applications that include socketio and authentication"
5
+ authors = [{name = "Thomas Dunteman", email= "git@learningtopi.com"}]
6
+ keywords = ["flask", "socketio"]
7
+ readme = "README.md"
8
+ requires-python = ">=3.12"
9
+ classifiers = [
10
+ "License :: OSI Approved :: MIT License",
11
+ "Programming Language :: Python :: 3",
12
+ "Framework :: Flask",
13
+ "Environment :: Web Environment"]
14
+ dependencies = [
15
+ "aiosmtpd==1.4.6",
16
+ "atpublic==7.0.0",
17
+ "attrs==25.4.0",
18
+ "azure-communication-email==1.1.0",
19
+ "azure-core==1.38.0",
20
+ "azure-identity==1.25.1",
21
+ "certifi==2026.1.4",
22
+ "cffi==2.0.0",
23
+ "charset-normalizer==3.4.4",
24
+ "cryptography==46.0.3",
25
+ "idna==3.11",
26
+ "ipcalc==1.99.0",
27
+ "isodate==0.7.2",
28
+ "logging-handler==1.0.7",
29
+ "msal==1.34.0",
30
+ "msal-extensions==1.3.1",
31
+ "parameter-verification==0.1.1",
32
+ "pycparser==3.0",
33
+ "PyJWT==2.10.1",
34
+ "queue_processor==1.1.2",
35
+ "requests==2.32.5",
36
+ "six==1.17.0",
37
+ "typing_extensions==4.15.0",
38
+ "urllib3==2.6.3",
39
+ "validators==0.35.0"
40
+ ]
41
+
42
+ [project.urls]
43
+ "homepage" = "https://github.com/LearningToPi/flask_app_class"
44
+ "bug tracker" = "https://github.com/LearningToPi/flask_app_class/issues"
45
+ "source code" = "https://github.com/LearningToPi/flask_app_class"
46
+
47
+ [build-system]
48
+ requires = ["setuptools>=61"]
49
+ build-backend = "setuptools.build_meta"
50
+
51
+ [tool.deploy_manager]
52
+ test_mounts = "local/settings.json:local/settings.json"
53
+
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1 @@
1
+ from flask_app_class.flask_app import FlaskApp, render_template
@@ -0,0 +1,12 @@
1
+ import sys
2
+ import argparse
3
+ from logging_handler import DEBUG, INFO, WARNING, ERROR, CRITICAL
4
+ from flask_app_class import FlaskApp
5
+
6
+ parser = argparse.ArgumentParser(description="Flask Class Based application framework.")
7
+ parser.add_argument("--config", type=str, default=None, help='Enter a JSON configuration file to load.')
8
+ parser.add_argument("--log_level", type=str, default='DEBUG', help='Enter a logging level ("DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL")')
9
+ args = parser.parse_args()
10
+
11
+ app = FlaskApp(config_file=args.config, web_log_level=args.log_level, app_log_level=args.log_level)
12
+ app.start()