edu-rdm-integration 3.10.1__py3-none-any.whl → 3.10.3__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.
- edu_rdm_integration/rdm_models/apps.py +0 -5
- edu_rdm_integration/stages/upload_data/export_managers.py +1 -3
- {edu_rdm_integration-3.10.1.dist-info → edu_rdm_integration-3.10.3.dist-info}/METADATA +3 -2
- {edu_rdm_integration-3.10.1.dist-info → edu_rdm_integration-3.10.3.dist-info}/RECORD +7 -7
- {edu_rdm_integration-3.10.1.dist-info → edu_rdm_integration-3.10.3.dist-info}/WHEEL +0 -0
- {edu_rdm_integration-3.10.1.dist-info → edu_rdm_integration-3.10.3.dist-info}/licenses/LICENSE +0 -0
- {edu_rdm_integration-3.10.1.dist-info → edu_rdm_integration-3.10.3.dist-info}/top_level.txt +0 -0
|
@@ -20,9 +20,6 @@ from django.db.transaction import (
|
|
|
20
20
|
from uploader_client.adapters import (
|
|
21
21
|
adapter,
|
|
22
22
|
)
|
|
23
|
-
from web_edu.plugins.gis_ruo.enums import (
|
|
24
|
-
OPERATIONS_METHODS_MAP,
|
|
25
|
-
)
|
|
26
23
|
|
|
27
24
|
from educommon import (
|
|
28
25
|
logger,
|
|
@@ -39,6 +36,7 @@ from edu_rdm_integration.stages.export_data.consts import (
|
|
|
39
36
|
TOTAL_ATTACHMENTS_SIZE_KEY,
|
|
40
37
|
)
|
|
41
38
|
from edu_rdm_integration.stages.export_data.functions.base.consts import (
|
|
39
|
+
OPERATIONS_METHODS_MAP,
|
|
42
40
|
OPERATIONS_URLS_MAP,
|
|
43
41
|
)
|
|
44
42
|
from edu_rdm_integration.stages.export_data.functions.base.requests import (
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: edu-rdm-integration
|
|
3
|
-
Version: 3.10.
|
|
3
|
+
Version: 3.10.3
|
|
4
4
|
Summary: Интеграция с Региональной витриной данных
|
|
5
5
|
Author-email: BARS Group <education_dev@bars.group>
|
|
6
6
|
Project-URL: Homepage, https://stash.bars-open.ru/projects/EDUBASE/repos/edu-rdm-integration/browse
|
|
@@ -117,6 +117,7 @@ Dynamic: license-file
|
|
|
117
117
|
INSTALLED_APPS = (
|
|
118
118
|
...
|
|
119
119
|
'edu_rdm_integration',
|
|
120
|
+
'edu_rdm_integration.collect_and_export_data',
|
|
120
121
|
'edu_rdm_integration.core.registry',
|
|
121
122
|
'edu_rdm_integration.rdm_entities',
|
|
122
123
|
'edu_rdm_integration.rdm_models',
|
|
@@ -258,7 +259,7 @@ INSTALLED_APPS = (
|
|
|
258
259
|
RDM_UPLOAD_STATUS_TASK_MINUTE = conf.get('rdm_upload_status_task', 'MINUTE')
|
|
259
260
|
RDM_UPLOAD_STATUS_TASK_HOUR = conf.get('rdm_upload_status_task', 'HOUR')
|
|
260
261
|
RDM_UPLOAD_STATUS_TASK_DAY_OF_WEEK = conf.get('rdm_upload_status_task', 'DAY_OF_WEEK')
|
|
261
|
-
|
|
262
|
+
RDM_UPLOAD_STATUS_TASK_LOCK_EXPIRE_SECONDS = conf.get('rdm_upload_status_task', 'LOCK_EXPIRE_SECONDS')
|
|
262
263
|
|
|
263
264
|
# Настройка очереди Redis для формирования файлов РВД.
|
|
264
265
|
RDM_REDIS_HOST = conf.get('rdm_redis', 'REDIS_HOST')
|
|
@@ -79,7 +79,7 @@ edu_rdm_integration/rdm_entities/utils.py,sha256=zpVmqcJVYjQSHot9ZrVufDeSECP9kos
|
|
|
79
79
|
edu_rdm_integration/rdm_entities/migrations/0001_initial.py,sha256=TL8zkmtbFdwdKkFy8wn5SC7dpLBFlS6s8PBp1YBPAog,1664
|
|
80
80
|
edu_rdm_integration/rdm_entities/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
81
81
|
edu_rdm_integration/rdm_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
82
|
-
edu_rdm_integration/rdm_models/apps.py,sha256=
|
|
82
|
+
edu_rdm_integration/rdm_models/apps.py,sha256=JJwHzCXYVe5cEhvDg61KkrLoRT_ZbJCIAWEM2lOQyHU,288
|
|
83
83
|
edu_rdm_integration/rdm_models/mixins.py,sha256=rmoT8Lm5v9bt7WYt4TbCXigkA_guh40I_9bnhHl7Hgg,2327
|
|
84
84
|
edu_rdm_integration/rdm_models/models.py,sha256=6hp03YwJ8twVz0n7Av0B2Xz1D3E1ktX0-rDO8jK6Q5I,2245
|
|
85
85
|
edu_rdm_integration/rdm_models/utils.py,sha256=Xk0HEpFEGAndoAD2TdubK4SI_dW2BvchQ7UeMEfvpfQ,631
|
|
@@ -225,7 +225,7 @@ edu_rdm_integration/stages/upload_data/apps.py,sha256=aFhVPK-65b35CGKoAeAgQ0mm3S
|
|
|
225
225
|
edu_rdm_integration/stages/upload_data/consts.py,sha256=PFpWpJeOys3wu2JwfNkLOgpp7qss8z5gBxY3XuTxwYA,243
|
|
226
226
|
edu_rdm_integration/stages/upload_data/dataclasses.py,sha256=zwxlED6yEeMStfc-Y6pvdY7xF-530qbO0HBWfwneeI8,261
|
|
227
227
|
edu_rdm_integration/stages/upload_data/enums.py,sha256=uGRqcflf6moPWfFa8KKbeSY2y88-AegAcRJKlQ1PA_Y,453
|
|
228
|
-
edu_rdm_integration/stages/upload_data/export_managers.py,sha256=
|
|
228
|
+
edu_rdm_integration/stages/upload_data/export_managers.py,sha256=wPRx91JE8mECgfSkpkePP4DGIjL2KrbJ9-WlR6YFg-o,13594
|
|
229
229
|
edu_rdm_integration/stages/upload_data/helpers.py,sha256=rHEOt2JvLFbZlyTAg8pK8OGNQ3qEWu2D9nrYJIi4VRY,6177
|
|
230
230
|
edu_rdm_integration/stages/upload_data/models.py,sha256=TkIFxVq3RY9n5nAjPPtctV7QLyTmC4aXdRV6rWPnW7w,5155
|
|
231
231
|
edu_rdm_integration/stages/upload_data/operations.py,sha256=CVQYaucerJbOAE3JDO05FaX4Bz9hBMKBXYqJohXKZpI,6462
|
|
@@ -250,8 +250,8 @@ edu_rdm_integration/stages/upload_data/uploader_log/ui.py,sha256=mU3XA9zVKHGqzNk
|
|
|
250
250
|
edu_rdm_integration/stages/upload_data/uploader_log/migrations/0001_initial.py,sha256=r5oOB7DBK9-mfuqPAgjXUJY5-hEcmMdILCwDTpaLnBc,753
|
|
251
251
|
edu_rdm_integration/stages/upload_data/uploader_log/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
252
252
|
edu_rdm_integration/stages/upload_data/uploader_log/templates/ui-js/object-grid-buttons.js,sha256=2xyGe0wdVokM0RhpzRzcRvJPBkBmPe3SlZry4oP4Nzs,6201
|
|
253
|
-
edu_rdm_integration-3.10.
|
|
254
|
-
edu_rdm_integration-3.10.
|
|
255
|
-
edu_rdm_integration-3.10.
|
|
256
|
-
edu_rdm_integration-3.10.
|
|
257
|
-
edu_rdm_integration-3.10.
|
|
253
|
+
edu_rdm_integration-3.10.3.dist-info/licenses/LICENSE,sha256=uw43Gjjj-1vXWCItfSrNDpbejnOwZMrNerUh8oWbq8Q,3458
|
|
254
|
+
edu_rdm_integration-3.10.3.dist-info/METADATA,sha256=t2WOYj7nbtkYK77hU90ozDYWwSpEmRw5EbbJ7fukrXw,39647
|
|
255
|
+
edu_rdm_integration-3.10.3.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
|
256
|
+
edu_rdm_integration-3.10.3.dist-info/top_level.txt,sha256=nRJV0O14UtNE-jGIYG03sohgFnZClvf57H5m6VBXe9Y,20
|
|
257
|
+
edu_rdm_integration-3.10.3.dist-info/RECORD,,
|
|
File without changes
|
{edu_rdm_integration-3.10.1.dist-info → edu_rdm_integration-3.10.3.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|