ositah 24.7.dev1__py3-none-any.whl → 24.7.dev3__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.

Potentially problematic release.


This version of ositah might be problematic. Click here for more details.

Files changed (47) hide show
  1. ositah/__init__.py +0 -0
  2. ositah/app.py +17 -0
  3. ositah/apps/__init__.py +0 -0
  4. ositah/apps/analysis.py +774 -0
  5. ositah/apps/configuration/__init__.py +0 -0
  6. ositah/apps/configuration/callbacks.py +917 -0
  7. ositah/apps/configuration/main.py +546 -0
  8. ositah/apps/configuration/parameters.py +74 -0
  9. ositah/apps/configuration/tools.py +112 -0
  10. ositah/apps/export.py +1172 -0
  11. ositah/apps/validation/__init__.py +0 -0
  12. ositah/apps/validation/callbacks.py +240 -0
  13. ositah/apps/validation/main.py +89 -0
  14. ositah/apps/validation/parameters.py +25 -0
  15. ositah/apps/validation/tables.py +654 -0
  16. ositah/apps/validation/tools.py +533 -0
  17. ositah/assets/arrow_down_up.svg +4 -0
  18. ositah/assets/ositah.css +54 -0
  19. ositah/assets/sort_ascending.svg +5 -0
  20. ositah/assets/sort_descending.svg +6 -0
  21. ositah/assets/sorttable.js +499 -0
  22. ositah/main.py +449 -0
  23. ositah/ositah.example.cfg +215 -0
  24. ositah/static/style.css +54 -0
  25. ositah/templates/base.html +22 -0
  26. ositah/templates/bootstrap_login.html +38 -0
  27. ositah/templates/login_form.html +27 -0
  28. ositah/utils/__init__.py +0 -0
  29. ositah/utils/agents.py +117 -0
  30. ositah/utils/authentication.py +287 -0
  31. ositah/utils/cache.py +19 -0
  32. ositah/utils/core.py +13 -0
  33. ositah/utils/exceptions.py +64 -0
  34. ositah/utils/hito_db.py +51 -0
  35. ositah/utils/hito_db_model.py +253 -0
  36. ositah/utils/menus.py +339 -0
  37. ositah/utils/period.py +135 -0
  38. ositah/utils/projects.py +1175 -0
  39. ositah/utils/teams.py +42 -0
  40. ositah/utils/utils.py +458 -0
  41. {ositah-24.7.dev1.dist-info → ositah-24.7.dev3.dist-info}/METADATA +1 -1
  42. ositah-24.7.dev3.dist-info/RECORD +46 -0
  43. ositah-24.7.dev1.dist-info/RECORD +0 -6
  44. {ositah-24.7.dev1.dist-info → ositah-24.7.dev3.dist-info}/LICENSE +0 -0
  45. {ositah-24.7.dev1.dist-info → ositah-24.7.dev3.dist-info}/WHEEL +0 -0
  46. {ositah-24.7.dev1.dist-info → ositah-24.7.dev3.dist-info}/entry_points.txt +0 -0
  47. {ositah-24.7.dev1.dist-info → ositah-24.7.dev3.dist-info}/top_level.txt +0 -0
ositah/__init__.py ADDED
File without changes
ositah/app.py ADDED
@@ -0,0 +1,17 @@
1
+ # Dash app initialization
2
+
3
+ import os
4
+
5
+ import dash_bootstrap_components as dbc
6
+ from dash import Dash
7
+ from flask import Flask
8
+
9
+ APP_NAME = __name__
10
+ FLASK_TEMPLATES_DIR = f"{os.path.dirname(__file__)}/templates"
11
+
12
+ app = Dash(
13
+ APP_NAME,
14
+ server=Flask(APP_NAME, template_folder=FLASK_TEMPLATES_DIR),
15
+ external_stylesheets=[dbc.themes.BOOTSTRAP, dbc.icons.BOOTSTRAP],
16
+ suppress_callback_exceptions=True,
17
+ )
File without changes