ositah 24.2.dev1__py3-none-any.whl → 24.7.dev1__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.
- {ositah-24.2.dev1.dist-info → ositah-24.7.dev1.dist-info}/METADATA +1 -1
- ositah-24.7.dev1.dist-info/RECORD +6 -0
- {ositah-24.2.dev1.dist-info → ositah-24.7.dev1.dist-info}/WHEEL +1 -1
- ositah/__init__.py +0 -0
- ositah/app.py +0 -17
- ositah/apps/__init__.py +0 -0
- ositah/apps/analysis.py +0 -774
- ositah/apps/configuration/__init__.py +0 -0
- ositah/apps/configuration/callbacks.py +0 -917
- ositah/apps/configuration/main.py +0 -542
- ositah/apps/configuration/parameters.py +0 -74
- ositah/apps/configuration/tools.py +0 -112
- ositah/apps/export.py +0 -1172
- ositah/apps/validation/__init__.py +0 -0
- ositah/apps/validation/callbacks.py +0 -240
- ositah/apps/validation/main.py +0 -89
- ositah/apps/validation/parameters.py +0 -25
- ositah/apps/validation/tables.py +0 -654
- ositah/apps/validation/tools.py +0 -533
- ositah/assets/arrow_down_up.svg +0 -4
- ositah/assets/ositah.css +0 -54
- ositah/assets/sort_ascending.svg +0 -5
- ositah/assets/sort_descending.svg +0 -6
- ositah/assets/sorttable.js +0 -499
- ositah/main.py +0 -451
- ositah/ositah.example.cfg +0 -215
- ositah/static/style.css +0 -54
- ositah/templates/base.html +0 -22
- ositah/templates/bootstrap_login.html +0 -38
- ositah/templates/login_form.html +0 -27
- ositah/utils/__init__.py +0 -0
- ositah/utils/agents.py +0 -117
- ositah/utils/authentication.py +0 -287
- ositah/utils/cache.py +0 -19
- ositah/utils/core.py +0 -13
- ositah/utils/exceptions.py +0 -64
- ositah/utils/hito_db.py +0 -51
- ositah/utils/hito_db_model.py +0 -245
- ositah/utils/menus.py +0 -339
- ositah/utils/period.py +0 -135
- ositah/utils/projects.py +0 -1175
- ositah/utils/teams.py +0 -42
- ositah/utils/utils.py +0 -458
- ositah-24.2.dev1.dist-info/RECORD +0 -46
- {ositah-24.2.dev1.dist-info → ositah-24.7.dev1.dist-info}/LICENSE +0 -0
- {ositah-24.2.dev1.dist-info → ositah-24.7.dev1.dist-info}/entry_points.txt +0 -0
- {ositah-24.2.dev1.dist-info → ositah-24.7.dev1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
ositah-24.7.dev1.dist-info/LICENSE,sha256=2C86YWCx1fvz92WySupcb6_t4NhHCVPE_ucy0YMTuoc,1550
|
|
2
|
+
ositah-24.7.dev1.dist-info/METADATA,sha256=7p9KX47WGY00M1ID5sWmnTZ154AJkqNB7xMurXJg0lk,8103
|
|
3
|
+
ositah-24.7.dev1.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
|
|
4
|
+
ositah-24.7.dev1.dist-info/entry_points.txt,sha256=t9oDDLUO1LwHJewlE862LbJMHpDTEyqbeUAPw_F7Q3I,44
|
|
5
|
+
ositah-24.7.dev1.dist-info/top_level.txt,sha256=3kfj_oK4xoZFt0nsw6KKT_aoqshELBu0ryLXECbcqNI,7
|
|
6
|
+
ositah-24.7.dev1.dist-info/RECORD,,
|
ositah/__init__.py
DELETED
|
File without changes
|
ositah/app.py
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
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
|
-
)
|
ositah/apps/__init__.py
DELETED
|
File without changes
|