endoreg-db 0.1.0__py3-none-any.whl → 0.2.1__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.
- endoreg_db/data/__init__.py +14 -0
- endoreg_db/data/active_model/data.yaml +3 -0
- endoreg_db/data/center/data.yaml +7 -0
- endoreg_db/data/endoscope_type/data.yaml +11 -0
- endoreg_db/data/endoscopy_processor/data.yaml +45 -0
- endoreg_db/data/examination/examinations/data.yaml +17 -0
- endoreg_db/data/examination/time/data.yaml +48 -0
- endoreg_db/data/examination/time-type/data.yaml +8 -0
- endoreg_db/data/examination/type/data.yaml +5 -0
- endoreg_db/data/information_source/data.yaml +30 -0
- endoreg_db/data/label/label/data.yaml +62 -0
- endoreg_db/data/label/label-set/data.yaml +18 -0
- endoreg_db/data/label/label-type/data.yaml +7 -0
- endoreg_db/data/model_type/data.yaml +7 -0
- endoreg_db/data/profession/data.yaml +70 -0
- endoreg_db/data/unit/data.yaml +17 -0
- endoreg_db/data/unit/length.yaml +31 -0
- endoreg_db/data/unit/volume.yaml +26 -0
- endoreg_db/data/unit/weight.yaml +31 -0
- endoreg_db/forms/__init__.py +2 -0
- endoreg_db/forms/settings/__init__.py +8 -0
- endoreg_db/forms/unit.py +6 -0
- endoreg_db/management/commands/_load_model_template.py +41 -0
- endoreg_db/management/commands/delete_legacy_images.py +19 -0
- endoreg_db/management/commands/delete_legacy_videos.py +17 -0
- endoreg_db/management/commands/extract_legacy_video_frames.py +18 -0
- endoreg_db/management/commands/fetch_legacy_image_dataset.py +32 -0
- endoreg_db/management/commands/import_legacy_images.py +94 -0
- endoreg_db/management/commands/import_legacy_videos.py +76 -0
- endoreg_db/management/commands/load_active_model_data.py +45 -0
- endoreg_db/management/commands/load_ai_model_data.py +45 -0
- endoreg_db/management/commands/load_base_db_data.py +62 -0
- endoreg_db/management/commands/load_center_data.py +43 -0
- endoreg_db/management/commands/load_endoscope_type_data.py +45 -0
- endoreg_db/management/commands/load_endoscopy_processor_data.py +45 -0
- endoreg_db/management/commands/load_examination_data.py +75 -0
- endoreg_db/management/commands/load_information_source.py +45 -0
- endoreg_db/management/commands/load_label_data.py +67 -0
- endoreg_db/management/commands/load_profession_data.py +44 -0
- endoreg_db/management/commands/load_unit_data.py +46 -0
- endoreg_db/management/commands/load_user_groups.py +67 -0
- endoreg_db/management/commands/register_ai_model.py +65 -0
- endoreg_db/migrations/0001_initial.py +582 -0
- endoreg_db/models/__init__.py +53 -0
- endoreg_db/models/ai_model/__init__.py +3 -0
- endoreg_db/models/ai_model/active_model.py +9 -0
- endoreg_db/models/ai_model/model_meta.py +24 -0
- endoreg_db/models/ai_model/model_type.py +26 -0
- endoreg_db/models/ai_model/utils.py +8 -0
- endoreg_db/models/annotation/__init__.py +2 -0
- endoreg_db/models/annotation/binary_classification_annotation_task.py +80 -0
- endoreg_db/models/annotation/image_classification.py +27 -0
- endoreg_db/models/center.py +19 -0
- endoreg_db/models/data_file/__init__.py +4 -0
- endoreg_db/models/data_file/base_classes/__init__.py +3 -0
- endoreg_db/models/data_file/base_classes/abstract_frame.py +51 -0
- endoreg_db/models/data_file/base_classes/abstract_video.py +200 -0
- endoreg_db/models/data_file/frame.py +45 -0
- endoreg_db/models/data_file/report_file.py +88 -0
- endoreg_db/models/data_file/video/__init__.py +7 -0
- endoreg_db/models/data_file/video/import_meta.py +25 -0
- endoreg_db/models/data_file/video/video.py +25 -0
- endoreg_db/models/data_file/video_segment.py +107 -0
- endoreg_db/models/examination/__init__.py +4 -0
- endoreg_db/models/examination/examination.py +26 -0
- endoreg_db/models/examination/examination_time.py +27 -0
- endoreg_db/models/examination/examination_time_type.py +24 -0
- endoreg_db/models/examination/examination_type.py +18 -0
- endoreg_db/models/hardware/__init__.py +2 -0
- endoreg_db/models/hardware/endoscope.py +44 -0
- endoreg_db/models/hardware/endoscopy_processor.py +143 -0
- endoreg_db/models/information_source.py +22 -0
- endoreg_db/models/label/__init__.py +1 -0
- endoreg_db/models/label/label.py +84 -0
- endoreg_db/models/legacy_data/__init__.py +3 -0
- endoreg_db/models/legacy_data/image.py +34 -0
- endoreg_db/models/patient_examination/__init__.py +35 -0
- endoreg_db/models/persons/__init__.py +4 -0
- endoreg_db/models/persons/examiner/__init__.py +2 -0
- endoreg_db/models/persons/examiner/examiner.py +16 -0
- endoreg_db/models/persons/examiner/examiner_type.py +2 -0
- endoreg_db/models/persons/patient.py +58 -0
- endoreg_db/models/persons/person.py +34 -0
- endoreg_db/models/persons/portal_user_information.py +29 -0
- endoreg_db/models/prediction/__init__.py +2 -0
- endoreg_db/models/prediction/image_classification.py +37 -0
- endoreg_db/models/prediction/video_prediction_meta.py +244 -0
- endoreg_db/models/unit.py +20 -0
- endoreg_db/queries/__init__.py +5 -0
- endoreg_db/queries/annotations/__init__.py +3 -0
- endoreg_db/queries/annotations/legacy.py +159 -0
- endoreg_db/queries/get/__init__.py +6 -0
- endoreg_db/queries/get/annotation.py +0 -0
- endoreg_db/queries/get/center.py +42 -0
- endoreg_db/queries/get/model.py +13 -0
- endoreg_db/queries/get/patient.py +14 -0
- endoreg_db/queries/get/patient_examination.py +20 -0
- endoreg_db/queries/get/prediction.py +0 -0
- endoreg_db/queries/get/report_file.py +33 -0
- endoreg_db/queries/get/video.py +31 -0
- endoreg_db/queries/get/video_import_meta.py +0 -0
- endoreg_db/queries/get/video_prediction_meta.py +0 -0
- endoreg_db/queries/sanity/__init_.py +0 -0
- endoreg_db/serializers/__init__.py +10 -0
- endoreg_db/serializers/ai_model.py +19 -0
- endoreg_db/serializers/annotation.py +17 -0
- endoreg_db/serializers/center.py +11 -0
- endoreg_db/serializers/examination.py +33 -0
- endoreg_db/serializers/frame.py +13 -0
- endoreg_db/serializers/hardware.py +21 -0
- endoreg_db/serializers/label.py +22 -0
- endoreg_db/serializers/patient.py +10 -0
- endoreg_db/serializers/prediction.py +15 -0
- endoreg_db/serializers/report_file.py +7 -0
- endoreg_db/serializers/video.py +27 -0
- endoreg_db-0.2.1.dist-info/LICENSE +674 -0
- endoreg_db-0.2.1.dist-info/METADATA +27 -0
- endoreg_db-0.2.1.dist-info/RECORD +126 -0
- endoreg_db-0.1.0.dist-info/METADATA +0 -19
- endoreg_db-0.1.0.dist-info/RECORD +0 -10
- {endoreg_db-0.1.0.dist-info → endoreg_db-0.2.1.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: endoreg-db
|
|
3
|
+
Version: 0.2.1
|
|
4
|
+
Summary: EndoReg Db Django App
|
|
5
|
+
License: GNU3
|
|
6
|
+
Author: Thomas J. Lux
|
|
7
|
+
Requires-Python: >=3.11,<4.0
|
|
8
|
+
Classifier: License :: Other/Proprietary License
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Requires-Dist: django (>=4.2,<4.3)
|
|
13
|
+
Requires-Dist: django-bootstrap5 (>=23.4,<24.0)
|
|
14
|
+
Requires-Dist: djangorestframework (>=3.14.0,<4.0.0)
|
|
15
|
+
Requires-Dist: icecream (>=2.1.3,<3.0.0)
|
|
16
|
+
Requires-Dist: opencv-python (>=4.9.0.80,<5.0.0.0)
|
|
17
|
+
Requires-Dist: pillow (>=10.2.0,<11.0.0)
|
|
18
|
+
Requires-Dist: pyyaml (>=6.0.1,<7.0.0)
|
|
19
|
+
Requires-Dist: tqdm (>=4.66.2,<5.0.0)
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
|
|
22
|
+
# endoreg-db
|
|
23
|
+
endoreg-db
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## Poetry add pypi token
|
|
27
|
+
poetry config pypi-token.pypi your-api-token
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
endoreg_db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
endoreg_db/admin.py,sha256=suMo4x8I3JBxAFBVIdE-5qnqZ6JAZV0FESABHOSc-vg,63
|
|
3
|
+
endoreg_db/apps.py,sha256=zYb2_RiEGIsLS6_OMWzCxcTHSNkF28CqF4xcd_6NHUg,151
|
|
4
|
+
endoreg_db/data/__init__.py,sha256=ZMRXoDGfInChxzVqxeFjLjFCyIra9CY5qJadEZYYs2c,530
|
|
5
|
+
endoreg_db/data/active_model/data.yaml,sha256=G7PvKmGDm_Gt6Tzf99s18b5vlE5qWruvClzlcINqDQE,86
|
|
6
|
+
endoreg_db/data/center/data.yaml,sha256=_gnE0ILE-wXB3JoL1G7XYtzgTbUGUr_ddzZBrvCUbBo,191
|
|
7
|
+
endoreg_db/data/endoscope_type/data.yaml,sha256=k8uF94svJsU02O-ceaLnQBoozJ6cT3iY_s_aKrvJZqg,242
|
|
8
|
+
endoreg_db/data/endoscopy_processor/data.yaml,sha256=iu02flPMyz0YKjqDWS5KLp8We6DSsHtJcGvJMWvCV-s,1044
|
|
9
|
+
endoreg_db/data/examination/examinations/data.yaml,sha256=IrUNRLJjKBfiZLCvkYpY7JYsntaN1KAEu9hEi7k7yhk,330
|
|
10
|
+
endoreg_db/data/examination/time/data.yaml,sha256=YQ2VFpmNoUwDf4cCSx35hj46YG2_JeRm_t86RTodVsI,1010
|
|
11
|
+
endoreg_db/data/examination/time-type/data.yaml,sha256=-RUaF7zUtuIFttLpu_Cb-cVZMN8_Y9bSHTozI6a69LA,156
|
|
12
|
+
endoreg_db/data/examination/type/data.yaml,sha256=Iimo4B2oIAkYTiTsFtrGr6RjLoegYV-ijP8mN2SHKH8,115
|
|
13
|
+
endoreg_db/data/information_source/data.yaml,sha256=ZJULuYMz7FzkKaC76hor6sCW_P43KoZ_ncEN0grjegk,765
|
|
14
|
+
endoreg_db/data/label/label/data.yaml,sha256=fwBiybtizA_hSGJWWCWNfKoHncy4s5ObxhKfjm9xEb8,1274
|
|
15
|
+
endoreg_db/data/label/label-set/data.yaml,sha256=wpAxOPbpZzZWLM95yjoKXhhjMk6mOKcGQdoLtcDXCZ4,339
|
|
16
|
+
endoreg_db/data/label/label-type/data.yaml,sha256=vffKYpTae_gu63_wza6LONs5ys4pna1EbrUUO6CafQs,136
|
|
17
|
+
endoreg_db/data/model_type/data.yaml,sha256=vCMMo8wiI5uL2zrQROmgsHq1GrC8IdagGIgNdQunUeQ,149
|
|
18
|
+
endoreg_db/data/profession/data.yaml,sha256=3lRQ-SEiJHjmuQWXVLBoL7tpfO2t82NgGc3PpKIayQg,2151
|
|
19
|
+
endoreg_db/data/unit/data.yaml,sha256=t9D7xepTm_7g6q6MUacCigoCLI3_6R6WS3BaowI6tok,393
|
|
20
|
+
endoreg_db/data/unit/length.yaml,sha256=wzDD3ZgnNRSIjItLMScrx0ZsEmrrJKuY9rZi8t8jkaU,633
|
|
21
|
+
endoreg_db/data/unit/volume.yaml,sha256=JYRHRC6uAIe5TPkY8B2SfuEEIBEDePy7GXL2pWAGyUM,510
|
|
22
|
+
endoreg_db/data/unit/weight.yaml,sha256=DyVBZmg_PP1IhKzLLl-hfyhxfwYhM6uTugO-g1slPZQ,622
|
|
23
|
+
endoreg_db/forms/__init__.py,sha256=irncZr5xuZkEEiAVOAhjHk6so1IBW2VZEodaFyQNyHU,60
|
|
24
|
+
endoreg_db/forms/settings/__init__.py,sha256=xKCYyRS1tEAWsm5C9OrG0Btqgitzuh_s31Oa_W6Os0I,259
|
|
25
|
+
endoreg_db/forms/unit.py,sha256=rywaSXT6E18RwPdGXhDr94Q9_lP-fauY1XAPhj0D7Dc,116
|
|
26
|
+
endoreg_db/management/commands/_load_model_template.py,sha256=2ELH07EbvcXs4Wdpj9rixm6rggNFJp3P0gb_zDQwNLQ,1379
|
|
27
|
+
endoreg_db/management/commands/delete_legacy_images.py,sha256=gJWkwqSFNVSBceivMYia93l0tN1FDqlQTxTDwQlzjvY,639
|
|
28
|
+
endoreg_db/management/commands/delete_legacy_videos.py,sha256=T_e0lhsHVEgtgjfK9ORXgh77OXZpHoZ7p6PqjP5BqO0,574
|
|
29
|
+
endoreg_db/management/commands/extract_legacy_video_frames.py,sha256=YiWRytW8EKqDgvy-wxt3JstHK2ErhokOIL4mzQmouVw,600
|
|
30
|
+
endoreg_db/management/commands/fetch_legacy_image_dataset.py,sha256=8QJyw25AOdCVLtbBvn7bTiIlZctEuxRmvRuNVqP7_iw,1153
|
|
31
|
+
endoreg_db/management/commands/import_legacy_images.py,sha256=IcBmihG9rvqC37XgMgwCwrIkYfHVFjQEWEWZaHtnMuc,3558
|
|
32
|
+
endoreg_db/management/commands/import_legacy_videos.py,sha256=MEZDo5Vny5Ofx0BZVCfq74DNxNQ7DUKu3yCowVTloAY,2730
|
|
33
|
+
endoreg_db/management/commands/load_active_model_data.py,sha256=NpWIksrVQIyrd-ZhI_B_34NFbLJI1_vhwuN6gXc8hgQ,1337
|
|
34
|
+
endoreg_db/management/commands/load_ai_model_data.py,sha256=rjC-yK8NNr0a0TDqvGHufI27ANQYTWDkWlSEWRkubGY,1329
|
|
35
|
+
endoreg_db/management/commands/load_base_db_data.py,sha256=T31Laf1ucqHX-63M6jcaFu4pCboJjR00aIjrW9UGlOA,2719
|
|
36
|
+
endoreg_db/management/commands/load_center_data.py,sha256=ztuxy_gcu--Cq_r_msHMpSwPmUeZ2zX7bPtB28KHS3Q,1272
|
|
37
|
+
endoreg_db/management/commands/load_endoscope_type_data.py,sha256=zZbjSmsRxT5arZsi9TRh5sBFNyM99dywOFmYPMcL7Cw,1345
|
|
38
|
+
endoreg_db/management/commands/load_endoscopy_processor_data.py,sha256=j-lVR624IGTl5NXfePggQW6Qx0AOaSxvmVUjEtTEImw,1365
|
|
39
|
+
endoreg_db/management/commands/load_examination_data.py,sha256=kGGSRpHxvhugpKXpUMrttWYe9y81XOzyjgiBqV492KU,2748
|
|
40
|
+
endoreg_db/management/commands/load_information_source.py,sha256=3sL906AMa7FGO3bgrNbfJlptrEwv925n-X_XB4PDZ_Q,1347
|
|
41
|
+
endoreg_db/management/commands/load_label_data.py,sha256=0vSBzBweO-M7mjXJotg4q_W7gbcaBoilrnA9e7dyp8o,2217
|
|
42
|
+
endoreg_db/management/commands/load_profession_data.py,sha256=oF3OF7zRqxA-SVpMW6e7LJ3MSfEc5Hoz1XlcvcFACRg,1321
|
|
43
|
+
endoreg_db/management/commands/load_unit_data.py,sha256=tcux-iL-ByT2ApgmHEkLllZSEA3AGMK5l-ze2Mtty1Y,1319
|
|
44
|
+
endoreg_db/management/commands/load_user_groups.py,sha256=q6tC6qBXT59TQTCNJMDG1aSyNUs8IljlsJ3m93b0lKQ,2348
|
|
45
|
+
endoreg_db/management/commands/register_ai_model.py,sha256=e5hgEyLS-E98XWzINcZ79mgtHvZltmbmAmLYaNrcfQs,2544
|
|
46
|
+
endoreg_db/migrations/0001_initial.py,sha256=bH2gr2Ws0i9JOY4iuLMMYeo1sVS2uSx5QeBKQEx9zwA,33640
|
|
47
|
+
endoreg_db/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
|
+
endoreg_db/models/__init__.py,sha256=47Pcu9-CKjtAP8rYCzLsXJ67YN0jWZQuw2AbW6DaV0E,957
|
|
49
|
+
endoreg_db/models/ai_model/__init__.py,sha256=rh5npLRGml5iiRocx359gsaA82pGJTW7wdVAfnbZP6w,106
|
|
50
|
+
endoreg_db/models/ai_model/active_model.py,sha256=r7SE3yg54kbjfOkk0Ei0rgs_Wo3ikx88rcEELqvRzGc,343
|
|
51
|
+
endoreg_db/models/ai_model/model_meta.py,sha256=YyYW8dScpAceHePnbrnRpgVBYDByi9x7u5Ydh03OJuo,869
|
|
52
|
+
endoreg_db/models/ai_model/model_type.py,sha256=mg1bEuzAjIte25N4TzD0yDhmUQYayJpyrRn2hB6b6eg,638
|
|
53
|
+
endoreg_db/models/ai_model/utils.py,sha256=Vh6_3lbDuFhSVCaaZKKm0CjoGA5Man6gWYe46HUXmbA,270
|
|
54
|
+
endoreg_db/models/annotation/__init__.py,sha256=jM8ISS4hWciC9cFUCMo6fSkmCGUptWkX5lM46zNre2I,191
|
|
55
|
+
endoreg_db/models/annotation/binary_classification_annotation_task.py,sha256=CpvyDxLSJcoJyajtUsDGBt881SNSFcG8lvuQ01knMNM,3292
|
|
56
|
+
endoreg_db/models/annotation/image_classification.py,sha256=Og1tRo1QKBMztwfdbFryUWghnGdsTqQdepn9rOcmVMc,1387
|
|
57
|
+
endoreg_db/models/center.py,sha256=hDGN0ABWeCtfjPJfSObeCwXnxxpqVqWlKRrtRUijVXI,550
|
|
58
|
+
endoreg_db/models/data_file/__init__.py,sha256=JWmWUwY9y-1BWwnU5s408qcTfb7V2_Sct-oJHvbyMhU,198
|
|
59
|
+
endoreg_db/models/data_file/base_classes/__init__.py,sha256=e4mORFpGvxlUKVMqs_B-BDxJxf4Tx1IN6u7zqpG0PjM,85
|
|
60
|
+
endoreg_db/models/data_file/base_classes/abstract_frame.py,sha256=wUGkPCYoOESfiragEEy6oMeGpdS2nzha6g2lBiK7pcA,2214
|
|
61
|
+
endoreg_db/models/data_file/base_classes/abstract_video.py,sha256=bSaDSkP7Kbmfo3te9ZcuqrMz7dijmi6HFhBCcYUxmOs,7391
|
|
62
|
+
endoreg_db/models/data_file/frame.py,sha256=-8O2yCfhTk2eMd3GB5PIPrO0i_oV6yk24UV-8Pvl2Ik,1935
|
|
63
|
+
endoreg_db/models/data_file/report_file.py,sha256=SsKwzhsaNhfOLCp7dg6GNBwPYdrqw7QHQtYzqeVgD18,3498
|
|
64
|
+
endoreg_db/models/data_file/video/__init__.py,sha256=pcm61GxRyzjGKQpWxek76sMq8RpQbtZ84Apxp_DSKIY,100
|
|
65
|
+
endoreg_db/models/data_file/video/import_meta.py,sha256=NUph91hSwKaesMU-9H13cM3ASfPSOuTdUpDvHKxZnaA,1269
|
|
66
|
+
endoreg_db/models/data_file/video/video.py,sha256=lx3Iu7pdsy_oGlrvKKY8V06ZSNNWcwPYjP5DgCE2MKA,673
|
|
67
|
+
endoreg_db/models/data_file/video_segment.py,sha256=zQo-ZGrHTRmuV6Cdj8gCAauwevQPk2m5VGo2lx0DojY,4652
|
|
68
|
+
endoreg_db/models/examination/__init__.py,sha256=fnbGYzLc0kvQMF-nfDXyczy2x14ahgnuGGaU_r7Xv-Q,183
|
|
69
|
+
endoreg_db/models/examination/examination.py,sha256=VMqxBI1MxYf_rPh-c478r-tOQRy-creSR-qzqxm4UDc,834
|
|
70
|
+
endoreg_db/models/examination/examination_time.py,sha256=mxCJE4q47pdom7hoPS3vxOBa1lhZe6X8QD0Ye__EGcE,902
|
|
71
|
+
endoreg_db/models/examination/examination_time_type.py,sha256=Qm7z9wnP6UUsUAFVDu0MfTZaayUMLzWN-0XHTYqROL4,767
|
|
72
|
+
endoreg_db/models/examination/examination_type.py,sha256=YLimDH2qn_U1sxVuF5nOCcVn3HGWFGJH_jMp_yR-hUg,546
|
|
73
|
+
endoreg_db/models/hardware/__init__.py,sha256=uFvXFjbIJnJ0-c9f_wA9cSNZ7IcPPZtUmYnJ0z2hfXw,99
|
|
74
|
+
endoreg_db/models/hardware/endoscope.py,sha256=HdEWonuBRiqTWFw_EIOwBdRG5xFRDdntuafCl4LOWRI,1200
|
|
75
|
+
endoreg_db/models/hardware/endoscopy_processor.py,sha256=eCvd8ZBzE45uaTY-pqqLG_J_2q04LeALYCYTf6ZcwPk,5114
|
|
76
|
+
endoreg_db/models/information_source.py,sha256=MFzH8ZVFqGl4jSnSZa-Df5w2oQus_OP3Oi-oqwRNFtw,696
|
|
77
|
+
endoreg_db/models/label/__init__.py,sha256=_WpYq-PlmPDvKRSNaGMLxlxJk-N3oRsbr_QwlF11dr4,45
|
|
78
|
+
endoreg_db/models/label/label.py,sha256=NlAEa5T35kNrOF0t6YZCk8aSvC0IncbvkxrEilkz1wM,2156
|
|
79
|
+
endoreg_db/models/legacy_data/__init__.py,sha256=J0ewe30Y2qCxCUPktcFOm2WOEz2fQnwrgfZ93FRcnio,115
|
|
80
|
+
endoreg_db/models/legacy_data/image.py,sha256=mKQed6AIJL2XauPB2GevHX6NXaR8gphundI9_IC9Hpc,1622
|
|
81
|
+
endoreg_db/models/patient_examination/__init__.py,sha256=s3ybaIdnvZDLKPnP1UctMRbao69yZowjmqjSYpfg1MI,1674
|
|
82
|
+
endoreg_db/models/persons/__init__.py,sha256=hp24oTdoneaXSJUVCFoVi-yqaF8rGoMJ1nl7AZWzb54,183
|
|
83
|
+
endoreg_db/models/persons/examiner/__init__.py,sha256=-e0mxzCacT04tOAg2NA2aKg6EbKvzuZPQR4E2MqMEfI,92
|
|
84
|
+
endoreg_db/models/persons/examiner/examiner.py,sha256=-eaRF42Qpr3Tj_XqYhz60noRJ5ndvpoZH_X3wM23rVc,422
|
|
85
|
+
endoreg_db/models/persons/examiner/examiner_type.py,sha256=wz9afexQBLl8oNJE40LYlKKgBux_Kv-lvviRxGqbwH4,72
|
|
86
|
+
endoreg_db/models/persons/patient.py,sha256=uZS4TbzrM7CNY_cVlWe3tZq2khJCSQxZ5qsh_cOB1n4,2396
|
|
87
|
+
endoreg_db/models/persons/person.py,sha256=R4NSIeHwAh-K4ZU9ThzdY_tWT0zyCAy7vSaFW0WhAMg,1096
|
|
88
|
+
endoreg_db/models/persons/portal_user_information.py,sha256=cpiGkqwLLCYs7yu7Qv2oo7u0MoHXq8z7j-oGvHJDrbs,969
|
|
89
|
+
endoreg_db/models/prediction/__init__.py,sha256=1WBkYwM-h33AbZYCCnrPN3PYVhxATbITPocQgWxwMcI,145
|
|
90
|
+
endoreg_db/models/prediction/image_classification.py,sha256=uOR5Eu0eX3gVRO_tOWydnzrpzPwpmJCpYJUqe02bUNQ,1619
|
|
91
|
+
endoreg_db/models/prediction/video_prediction_meta.py,sha256=ICjOstujy5m8aqjh12ff2MUnYwopg-GGKuneD5RP_1U,9492
|
|
92
|
+
endoreg_db/models/unit.py,sha256=uiyIhZeRpr9XGh1uUEk0VILboNFBSK2IUi5GsQZ6ogc,774
|
|
93
|
+
endoreg_db/models.py,sha256=Vjc0p2XbAPgE6HyTF6vll98A4eDhA5AvaQqsc4kQ9AQ,57
|
|
94
|
+
endoreg_db/queries/__init__.py,sha256=3yhFtU_yY2L8rK2--8WkjcyI0q94QPpTtv5w_v8rZRY,83
|
|
95
|
+
endoreg_db/queries/annotations/__init__.py,sha256=76O3dAIzuSye09VNPGSNPnqPEtgXZcBAGXKdh89y0ts,95
|
|
96
|
+
endoreg_db/queries/annotations/legacy.py,sha256=1uHubRWItrBzvw_5nwJfc4oa6shWWJcG5J68oVgiFvY,6442
|
|
97
|
+
endoreg_db/queries/get/__init__.py,sha256=id0oVNTEjzzUpkvTp0E4tClFN91EeKOyEuSAYsIlIQo,147
|
|
98
|
+
endoreg_db/queries/get/annotation.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
99
|
+
endoreg_db/queries/get/center.py,sha256=SeVxpzZUErk_jjv0RaurDar2i_28FWQ6RarxFHblnGw,1155
|
|
100
|
+
endoreg_db/queries/get/model.py,sha256=k4s5zDIv3s0SleG4lMBhrMYQuSlnECIHoORVQnAIerA,371
|
|
101
|
+
endoreg_db/queries/get/patient.py,sha256=5hN2tOPgeSrV0WtkWOkOjnWT4y7rf1HIHBDKGgX3-NQ,358
|
|
102
|
+
endoreg_db/queries/get/patient_examination.py,sha256=ImFzLT9cMAuVuK3oVPXZ75APv0FPO_ny1dGwWpbfPgM,728
|
|
103
|
+
endoreg_db/queries/get/prediction.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
104
|
+
endoreg_db/queries/get/report_file.py,sha256=dBQdCB-nujd-Q5_ecknGYF7C_uzJ8Zna__oclCo0o6M,976
|
|
105
|
+
endoreg_db/queries/get/video.py,sha256=-QsFaUr8CJCSLUn0BJ5AXYg9rTrJ8KGB67hTnudB3T4,887
|
|
106
|
+
endoreg_db/queries/get/video_import_meta.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
107
|
+
endoreg_db/queries/get/video_prediction_meta.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
108
|
+
endoreg_db/queries/sanity/__init_.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
109
|
+
endoreg_db/serializers/__init__.py,sha256=LRsUXi4RkFe7L1BjILVqYnw20CG8Turelq_yH3Ojq2Q,235
|
|
110
|
+
endoreg_db/serializers/ai_model.py,sha256=ArQOLN3qnb0H6_TfgySbndErEYqgO0rDAFsF_pdwDVs,579
|
|
111
|
+
endoreg_db/serializers/annotation.py,sha256=zqAct-DQ_NHXwc1fMxWX-EVCD-Bxt3KUHrf-QNwv_cg,707
|
|
112
|
+
endoreg_db/serializers/center.py,sha256=CAR0OETP_Ho8IEsmN08QrI-UmZ3i2tVnt6Gd2QTt_Pc,207
|
|
113
|
+
endoreg_db/serializers/examination.py,sha256=Tbe89zn-_a-3urNvdcsZ6MUAeRgDjsP7jNrgxIJ4E98,876
|
|
114
|
+
endoreg_db/serializers/frame.py,sha256=9G1Y1odIQoKjbXx9tn-2Lj8OLRIubuGsxG_ONiryx4k,337
|
|
115
|
+
endoreg_db/serializers/hardware.py,sha256=nSxRgMZUVGYYX5a0ZB90q1EnCZahs-WvegtBxODrq4c,534
|
|
116
|
+
endoreg_db/serializers/label.py,sha256=IzUK2t5FPy40LGq-yRS_KTakM0BqBsnCKGzxtTZ8W9g,490
|
|
117
|
+
endoreg_db/serializers/patient.py,sha256=N0LEevYRGGQTfXhZcL82k7oWcd4gGI_UopjunjV2oCc,209
|
|
118
|
+
endoreg_db/serializers/prediction.py,sha256=ULeuwyoTSW4zDObOcnweU-hhuC6wbkCfz4znTPRs9vM,462
|
|
119
|
+
endoreg_db/serializers/report_file.py,sha256=dsO_-zwybdhq4BWGzD2rp6u1nloZgTMa3Ll8qiq_et4,208
|
|
120
|
+
endoreg_db/serializers/video.py,sha256=mZ2CsSxVGUXB0FR-CLjIZpE86z1tmFPXBrHbgYY3jWY,831
|
|
121
|
+
endoreg_db/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
|
|
122
|
+
endoreg_db/views.py,sha256=xc1IQHrsij7j33TUbo-_oewy3vs03pw_etpBWaMYJl0,63
|
|
123
|
+
endoreg_db-0.2.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
124
|
+
endoreg_db-0.2.1.dist-info/METADATA,sha256=MrA4sPgFASZmDMidcoFwtZ_M08Rn-L2csxBvxGGct-c,832
|
|
125
|
+
endoreg_db-0.2.1.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
|
126
|
+
endoreg_db-0.2.1.dist-info/RECORD,,
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: endoreg-db
|
|
3
|
-
Version: 0.1.0
|
|
4
|
-
Summary: EndoReg projects db backend
|
|
5
|
-
License: GNU v3
|
|
6
|
-
Author: Thomas J. Lux
|
|
7
|
-
Requires-Python: >=3.11,<4.0
|
|
8
|
-
Classifier: License :: Other/Proprietary License
|
|
9
|
-
Classifier: Programming Language :: Python :: 3
|
|
10
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
-
Requires-Dist: pillow (>=10.2.0,<11.0.0)
|
|
13
|
-
Description-Content-Type: text/markdown
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
# Usage
|
|
17
|
-
## instantiate environment without project:
|
|
18
|
-
|
|
19
|
-
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
endoreg_db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
endoreg_db/admin.py,sha256=suMo4x8I3JBxAFBVIdE-5qnqZ6JAZV0FESABHOSc-vg,63
|
|
3
|
-
endoreg_db/apps.py,sha256=zYb2_RiEGIsLS6_OMWzCxcTHSNkF28CqF4xcd_6NHUg,151
|
|
4
|
-
endoreg_db/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
endoreg_db/models.py,sha256=Vjc0p2XbAPgE6HyTF6vll98A4eDhA5AvaQqsc4kQ9AQ,57
|
|
6
|
-
endoreg_db/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
|
|
7
|
-
endoreg_db/views.py,sha256=xc1IQHrsij7j33TUbo-_oewy3vs03pw_etpBWaMYJl0,63
|
|
8
|
-
endoreg_db-0.1.0.dist-info/METADATA,sha256=a1mWisuqV2KGwqW8KjWvco3PBPgMopFKC1WEv3lKuTc,494
|
|
9
|
-
endoreg_db-0.1.0.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
|
10
|
-
endoreg_db-0.1.0.dist-info/RECORD,,
|
|
File without changes
|