udata 7.0.5.dev28098__py2.py3-none-any.whl → 7.0.5.dev28140__py2.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 udata might be problematic. Click here for more details.

@@ -141,6 +141,10 @@ def load(geozones_file, levels_file, drop=False):
141
141
  total = load_zones(GeoZone, json_geozones)
142
142
  log.info('Loaded {total} zones'.format(total=total))
143
143
 
144
+ log.info('Clean removed geozones in datasets')
145
+ count = fixup_removed_geozone()
146
+ log.info(f'{count} geozones removed from datasets')
147
+
144
148
 
145
149
  @grp.command()
146
150
  def migrate():
@@ -188,3 +192,19 @@ def migrate():
188
192
  '''.format(level_summary, **counter)), level_summary])
189
193
  log.info(summary)
190
194
  log.info('Done')
195
+
196
+ def fixup_removed_geozone():
197
+ count = 0
198
+ all_datasets = Dataset.objects(spatial__zones__0__exists=True).timeout(False)
199
+ for dataset in all_datasets:
200
+ zones = dataset.spatial.zones
201
+ new_zones = [z for z in zones if getattr(z, 'name', None) is not None]
202
+
203
+ if len(new_zones) < len(zones):
204
+ log.debug(f"Removing deleted zones from dataset '{dataset.title}'")
205
+ count += len(zones) - len(new_zones)
206
+ dataset.spatial.zones = new_zones
207
+ dataset.save()
208
+
209
+ return count
210
+
@@ -6,10 +6,10 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: udata 7.0.4.dev0\n"
9
+ "Project-Id-Version: udata 7.0.5.dev0\n"
10
10
  "Report-Msgid-Bugs-To: i18n@opendata.team\n"
11
- "POT-Creation-Date: 2024-02-22 16:16+0100\n"
12
- "PO-Revision-Date: 2024-02-22 16:16+0100\n"
11
+ "POT-Creation-Date: 2024-03-20 12:27+0100\n"
12
+ "PO-Revision-Date: 2024-03-20 12:27+0100\n"
13
13
  "Last-Translator: Open Data Team <i18n@opendata.team>\n"
14
14
  "Language: en\n"
15
15
  "Language-Team: Open Data Team <i18n@opendata.team>\n"
@@ -43,7 +43,7 @@ msgstr ""
43
43
  msgid "Password reset instructions"
44
44
  msgstr ""
45
45
 
46
- #: udata/settings.py:421
46
+ #: udata/settings.py:430
47
47
  msgid "This dataset has been archived"
48
48
  msgstr ""
49
49
 
@@ -178,7 +178,7 @@ msgstr ""
178
178
 
179
179
  #: udata/core/contact_point/forms.py:12 udata/core/jobs/forms.py:27
180
180
  #: udata/core/organization/forms.py:47 udata/core/post/forms.py:15
181
- #: udata/core/topic/forms.py:16 udata/harvest/forms.py:60
181
+ #: udata/core/topic/forms.py:17 udata/harvest/forms.py:60
182
182
  #: udata/templates/api/admin.html:10
183
183
  msgid "Name"
184
184
  msgstr ""
@@ -189,7 +189,7 @@ msgstr ""
189
189
 
190
190
  #: udata/core/contact_point/forms.py:16 udata/core/dataset/forms.py:95
191
191
  #: udata/core/dataset/forms.py:153 udata/core/reuse/forms.py:38
192
- #: udata/core/topic/forms.py:14 udata/harvest/forms.py:69
192
+ #: udata/core/topic/forms.py:15 udata/harvest/forms.py:69
193
193
  msgid "Publish as"
194
194
  msgstr ""
195
195
 
@@ -231,7 +231,7 @@ msgstr ""
231
231
 
232
232
  #: udata/core/dataset/forms.py:56 udata/core/dataset/forms.py:126
233
233
  #: udata/core/jobs/forms.py:28 udata/core/organization/forms.py:51
234
- #: udata/core/reuse/forms.py:21 udata/core/topic/forms.py:18
234
+ #: udata/core/reuse/forms.py:21 udata/core/topic/forms.py:19
235
235
  #: udata/harvest/forms.py:62
236
236
  msgid "Description"
237
237
  msgstr ""
@@ -281,7 +281,7 @@ msgstr ""
281
281
  msgid "Related dataset"
282
282
  msgstr ""
283
283
 
284
- #: udata/core/dataset/forms.py:115
284
+ #: udata/core/dataset/forms.py:115 udata/tests/api/test_datasets_api.py:681
285
285
  msgid "Wrong contact point id or contact point ownership mismatch"
286
286
  msgstr ""
287
287
 
@@ -322,16 +322,17 @@ msgid "The period covered by the data"
322
322
  msgstr ""
323
323
 
324
324
  #: udata/core/dataset/forms.py:144 udata/core/spatial/forms.py:83
325
+ #: udata/core/topic/forms.py:25
325
326
  msgid "Spatial coverage"
326
327
  msgstr ""
327
328
 
328
- #: udata/core/dataset/forms.py:145
329
+ #: udata/core/dataset/forms.py:145 udata/core/topic/forms.py:26
329
330
  msgid "The geographical area covered by the data."
330
331
  msgstr ""
331
332
 
332
333
  #: udata/core/dataset/forms.py:146 udata/core/post/forms.py:26
333
334
  #: udata/core/reuse/forms.py:29 udata/core/site/forms.py:13
334
- #: udata/core/topic/forms.py:23
335
+ #: udata/core/topic/forms.py:28
335
336
  msgid "Tags"
336
337
  msgstr ""
337
338
 
@@ -340,7 +341,7 @@ msgid "Some taxonomy keywords"
340
341
  msgstr ""
341
342
 
342
343
  #: udata/core/dataset/forms.py:148 udata/core/reuse/forms.py:32
343
- #: udata/core/topic/forms.py:24
344
+ #: udata/core/topic/forms.py:29
344
345
  msgid "Private"
345
346
  msgstr ""
346
347
 
@@ -480,47 +481,47 @@ msgstr ""
480
481
  msgid "Remote file"
481
482
  msgstr ""
482
483
 
483
- #: udata/core/dataset/models.py:187
484
+ #: udata/core/dataset/models.py:189
484
485
  msgid "A schema must contains a name or an URL when a version is provided."
485
486
  msgstr ""
486
487
 
487
- #: udata/core/dataset/models.py:213 udata/tests/api/test_datasets_api.py:745
488
+ #: udata/core/dataset/models.py:215 udata/tests/api/test_datasets_api.py:772
488
489
  msgid "Schema name \"{schema}\" is not an allowed value. Allowed values: {values}"
489
490
  msgstr ""
490
491
 
491
- #: udata/core/dataset/models.py:224 udata/tests/api/test_datasets_api.py:751
492
+ #: udata/core/dataset/models.py:230 udata/tests/api/test_datasets_api.py:778
492
493
  msgid ""
493
494
  "Version \"{version}\" is not an allowed value for the schema \"{name}\". "
494
495
  "Allowed versions: {values}"
495
496
  msgstr ""
496
497
 
497
- #: udata/core/dataset/models.py:475 udata/core/dataset/rdf.py:397
498
+ #: udata/core/dataset/models.py:483 udata/core/dataset/rdf.py:435
498
499
  #: udata/tests/dataset/test_dataset_rdf.py:499
499
500
  #: udata/tests/dataset/test_dataset_rdf.py:512
500
501
  msgid "Nameless resource"
501
502
  msgstr ""
502
503
 
503
- #: udata/core/dataset/models.py:550
504
+ #: udata/core/dataset/models.py:558
504
505
  msgid "Future date of update"
505
506
  msgstr ""
506
507
 
507
- #: udata/core/dataset/models.py:563 udata/models/datetime_fields.py:59
508
+ #: udata/core/dataset/models.py:571 udata/models/datetime_fields.py:59
508
509
  msgid "Creation date"
509
510
  msgstr ""
510
511
 
511
- #: udata/core/dataset/models.py:565 udata/models/datetime_fields.py:61
512
+ #: udata/core/dataset/models.py:573 udata/models/datetime_fields.py:61
512
513
  msgid "Last modification date"
513
514
  msgstr ""
514
515
 
515
- #: udata/core/dataset/models.py:574
516
+ #: udata/core/dataset/models.py:582
516
517
  msgid "Pivotal data"
517
518
  msgstr ""
518
519
 
519
- #: udata/core/dataset/models.py:613
520
+ #: udata/core/dataset/models.py:621
520
521
  msgid "dataset"
521
522
  msgstr ""
522
523
 
523
- #: udata/core/dataset/rdf.py:395 udata/tests/dataset/test_dataset_rdf.py:486
524
+ #: udata/core/dataset/rdf.py:433 udata/tests/dataset/test_dataset_rdf.py:486
524
525
  msgid "{format} resource"
525
526
  msgstr ""
526
527
 
@@ -623,37 +624,49 @@ msgstr ""
623
624
  msgid "Role"
624
625
  msgstr ""
625
626
 
626
- #: udata/core/organization/models.py:22
627
+ #: udata/core/organization/models.py:23
627
628
  msgid "Administrator"
628
629
  msgstr ""
629
630
 
630
- #: udata/core/organization/models.py:23
631
+ #: udata/core/organization/models.py:24
631
632
  msgid "Editor"
632
633
  msgstr ""
633
634
 
634
- #: udata/core/organization/models.py:29 udata/features/transfer/models.py:14
635
+ #: udata/core/organization/models.py:30 udata/features/transfer/models.py:14
635
636
  #: udata/harvest/models.py:22 udata/harvest/models.py:32 udata/harvest/models.py:70
636
637
  msgid "Pending"
637
638
  msgstr ""
638
639
 
639
- #: udata/core/organization/models.py:30 udata/features/transfer/models.py:15
640
+ #: udata/core/organization/models.py:31 udata/features/transfer/models.py:15
640
641
  #: udata/harvest/models.py:71
641
642
  msgid "Accepted"
642
643
  msgstr ""
643
644
 
644
- #: udata/core/organization/models.py:31 udata/features/transfer/models.py:16
645
+ #: udata/core/organization/models.py:32 udata/features/transfer/models.py:16
645
646
  #: udata/harvest/models.py:72
646
647
  msgid "Refused"
647
648
  msgstr ""
648
649
 
649
- #: udata/core/organization/models.py:141
650
+ #: udata/core/organization/models.py:145
650
651
  msgid "Public Service"
651
652
  msgstr ""
652
653
 
653
- #: udata/core/organization/models.py:142
654
+ #: udata/core/organization/models.py:146
654
655
  msgid "Certified"
655
656
  msgstr ""
656
657
 
658
+ #: udata/core/organization/models.py:147
659
+ msgid "Association"
660
+ msgstr ""
661
+
662
+ #: udata/core/organization/models.py:148
663
+ msgid "Company"
664
+ msgstr ""
665
+
666
+ #: udata/core/organization/models.py:149
667
+ msgid "Local authority"
668
+ msgstr ""
669
+
657
670
  #: udata/core/organization/tasks.py:52
658
671
  msgid "New membership request"
659
672
  msgstr ""
@@ -677,6 +690,21 @@ msgstr ""
677
690
  msgid "Your organization \"%(name)s\" has been identified as public service"
678
691
  msgstr ""
679
692
 
693
+ #: udata/core/organization/tasks.py:126
694
+ #, python-format
695
+ msgid "Your organization \"%(name)s\" has been identified as a company"
696
+ msgstr ""
697
+
698
+ #: udata/core/organization/tasks.py:146
699
+ #, python-format
700
+ msgid "Your organization \"%(name)s\" has been identified as an association"
701
+ msgstr ""
702
+
703
+ #: udata/core/organization/tasks.py:166
704
+ #, python-format
705
+ msgid "Your organization \"%(name)s\" has been identified as a local authority"
706
+ msgstr ""
707
+
680
708
  #: udata/core/post/forms.py:16
681
709
  msgid "Headline"
682
710
  msgstr ""
@@ -685,11 +713,11 @@ msgstr ""
685
713
  msgid "Content"
686
714
  msgstr ""
687
715
 
688
- #: udata/core/post/forms.py:19 udata/core/topic/forms.py:20
716
+ #: udata/core/post/forms.py:19 udata/core/topic/forms.py:21
689
717
  msgid "Associated datasets"
690
718
  msgstr ""
691
719
 
692
- #: udata/core/post/forms.py:20 udata/core/topic/forms.py:21
720
+ #: udata/core/post/forms.py:20 udata/core/topic/forms.py:22
693
721
  msgid "Associated reuses"
694
722
  msgstr ""
695
723
 
@@ -949,7 +977,7 @@ msgstr ""
949
977
  msgid "French arrondissement"
950
978
  msgstr ""
951
979
 
952
- #: udata/core/topic/forms.py:25
980
+ #: udata/core/topic/forms.py:30
953
981
  msgid "Featured"
954
982
  msgstr ""
955
983
 
@@ -1025,54 +1053,54 @@ msgstr ""
1025
1053
  msgid "Not a valid UUID"
1026
1054
  msgstr ""
1027
1055
 
1028
- #: udata/forms/fields.py:200 udata/tests/api/test_datasets_api.py:739
1056
+ #: udata/forms/fields.py:210 udata/tests/api/test_datasets_api.py:766
1029
1057
  msgid "Invalid URL"
1030
1058
  msgstr ""
1031
1059
 
1032
- #: udata/forms/fields.py:404
1060
+ #: udata/forms/fields.py:414
1033
1061
  #, python-format
1034
1062
  msgid "Tag \"%(tag)s\" must be between %(min)d and %(max)d characters long."
1035
1063
  msgstr ""
1036
1064
 
1037
- #: udata/forms/fields.py:444 udata/forms/fields.py:496
1065
+ #: udata/forms/fields.py:454 udata/forms/fields.py:506
1038
1066
  msgid "{0} does not exists"
1039
1067
  msgstr ""
1040
1068
 
1041
- #: udata/forms/fields.py:470 udata/tests/forms/test_model_field.py:318
1069
+ #: udata/forms/fields.py:480 udata/tests/forms/test_model_field.py:318
1042
1070
  #: udata/tests/forms/test_model_field.py:332
1043
1071
  msgid "Missing \"id\" field"
1044
1072
  msgstr ""
1045
1073
 
1046
- #: udata/forms/fields.py:477
1074
+ #: udata/forms/fields.py:487
1047
1075
  msgid "Expect a \"{0}\" class but \"{1}\" was found"
1048
1076
  msgstr ""
1049
1077
 
1050
- #: udata/forms/fields.py:483 udata/tests/forms/test_model_field.py:43
1078
+ #: udata/forms/fields.py:493 udata/tests/forms/test_model_field.py:43
1051
1079
  #: udata/tests/forms/test_model_field.py:56
1052
1080
  msgid "Expect both class and identifier"
1053
1081
  msgstr ""
1054
1082
 
1055
- #: udata/forms/fields.py:529
1083
+ #: udata/forms/fields.py:539
1056
1084
  msgid "Model for {0} not found"
1057
1085
  msgstr ""
1058
1086
 
1059
- #: udata/forms/fields.py:564
1087
+ #: udata/forms/fields.py:574
1060
1088
  msgid "Unknown identifiers: {identifiers}"
1061
1089
  msgstr ""
1062
1090
 
1063
- #: udata/forms/fields.py:699
1091
+ #: udata/forms/fields.py:709
1064
1092
  msgid "Unable to parse date range"
1065
1093
  msgstr ""
1066
1094
 
1067
- #: udata/forms/fields.py:726 udata/forms/fields.py:749
1095
+ #: udata/forms/fields.py:736 udata/forms/fields.py:759
1068
1096
  msgid "You must be authenticated"
1069
1097
  msgstr ""
1070
1098
 
1071
- #: udata/forms/fields.py:729
1099
+ #: udata/forms/fields.py:739
1072
1100
  msgid "You can only set yourself as owner"
1073
1101
  msgstr ""
1074
1102
 
1075
- #: udata/forms/fields.py:752
1103
+ #: udata/forms/fields.py:762
1076
1104
  msgid "Permission denied for this organization"
1077
1105
  msgstr ""
1078
1106
 
@@ -1221,16 +1249,34 @@ msgstr ""
1221
1249
  msgid "Your account has now been deleted"
1222
1250
  msgstr ""
1223
1251
 
1224
- #: udata/templates/mail/badge_added_certified.html:6
1252
+ #: udata/templates/mail/badge_added_association.html:6
1225
1253
  #, python-format
1226
- msgid "%(user)s has certified your organization \"%(name)s\""
1254
+ msgid "%(user)s has identified your organization \"%(name)s\" as an association"
1227
1255
  msgstr ""
1228
1256
 
1257
+ #: udata/templates/mail/badge_added_association.html:27
1229
1258
  #: udata/templates/mail/badge_added_certified.html:27
1259
+ #: udata/templates/mail/badge_added_company.html:27
1260
+ #: udata/templates/mail/badge_added_local_authority.html:27
1230
1261
  #: udata/templates/mail/badge_added_public_service.html:27
1231
1262
  msgid "See the badge"
1232
1263
  msgstr ""
1233
1264
 
1265
+ #: udata/templates/mail/badge_added_certified.html:6
1266
+ #, python-format
1267
+ msgid "%(user)s has certified your organization \"%(name)s\""
1268
+ msgstr ""
1269
+
1270
+ #: udata/templates/mail/badge_added_company.html:6
1271
+ #, python-format
1272
+ msgid "%(user)s has identified your organization \"%(name)s\" as a company"
1273
+ msgstr ""
1274
+
1275
+ #: udata/templates/mail/badge_added_local_authority.html:6
1276
+ #, python-format
1277
+ msgid "%(user)s has identified your organization \"%(name)s\" as a local authority"
1278
+ msgstr ""
1279
+
1234
1280
  #: udata/templates/mail/badge_added_public_service.html:6
1235
1281
  #, python-format
1236
1282
  msgid "%(user)s has identified your organization \"%(name)s\" as public service"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: udata
3
- Version: 7.0.5.dev28098
3
+ Version: 7.0.5.dev28140
4
4
  Summary: Open data portal
5
5
  Home-page: https://github.com/opendatateam/udata
6
6
  Author: Opendata Team
@@ -145,7 +145,7 @@ It is collectively taken care of by members of the
145
145
  - Allow harvesting of big catalog (bigger than 16MB) [#2980](https://github.com/opendatateam/udata/pull/2980) [2985](https://github.com/opendatateam/udata/pull/2985)
146
146
  - Add downloads' count to organizations CSV [#2973](https://github.com/opendatateam/udata/pull/2973)
147
147
  - Add 3 new badges to the organization model : `company`, `association` and `local authority` [#2984](https://github.com/opendatateam/udata/pull/2984)
148
- - Prevent geozones listed ad `deleted` to be loaded [#2983](https://github.com/opendatateam/udata/pull/2983)
148
+ - Prevent geozones listed ad `deleted` to be loaded [#2983](https://github.com/opendatateam/udata/pull/2983) [#2993](https://github.com/opendatateam/udata/pull/2993)
149
149
  - Topic: add spatial field [#2988](https://github.com/opendatateam/udata/pull/2988)
150
150
  - Topic: add last_modified field [#2987](https://github.com/opendatateam/udata/pull/2987)
151
151
  - Add stacktraces to CSV errors [#2990](https://github.com/opendatateam/udata/pull/2990)
@@ -178,7 +178,7 @@ udata/core/spam/tests/test_spam.py,sha256=IuSRVoVCLBjJuoCXnPZx8XjtRyt5q2LrSBtIp8
178
178
  udata/core/spatial/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
179
179
  udata/core/spatial/api.py,sha256=tlApg3JpqbO6CwEwp1LzZ1hyPQreVEgF3H5yrcAPE74,5848
180
180
  udata/core/spatial/api_fields.py,sha256=ymGK3FyE2KNlASOU5GiPgZGeBjjOqnOyCOcRCbuw3D8,2629
181
- udata/core/spatial/commands.py,sha256=_PJ6ov8Yxz2942lwXraUyu5yaQ4Hn-QlrzrDik5BpcE,6225
181
+ udata/core/spatial/commands.py,sha256=qdJ4mUg3NUTrGx6L5MKPh1usvxmeCn8xMCZNGKyjWYE,6914
182
182
  udata/core/spatial/factories.py,sha256=GxUU8nRtSoGPw2m3Q-al0PYps2oSnlqC-bM7Eeu14rk,3288
183
183
  udata/core/spatial/forms.py,sha256=tXlYKge5Rc8L8pOjfUo1-9howgVJZDAh7q8xTIlbBww,3218
184
184
  udata/core/spatial/geoids.py,sha256=UqCto4dtQYPXOxyG7sx_0npzM6yvId40ngw3eAlmioQ,1159
@@ -643,7 +643,7 @@ udata/tests/workers/test_jobs_commands.py,sha256=0Ru2N-uxgWAgYoADxFjLgyburD5OdBL
643
643
  udata/tests/workers/test_tasks_routing.py,sha256=4cBChvphj23rbLIu4dCTYYiM5OfTEUZKlXuNnyBCnWA,2260
644
644
  udata/tests/workers/test_workers_api.py,sha256=8MtfAjrPL1TUfEBfVjrYfm_4rft4DfBlcamiVvMCJAo,8863
645
645
  udata/tests/workers/test_workers_helpers.py,sha256=EVTHL-KhwbwD8snfN8HdK5o-wMXYkl2oXgtl990fQxE,647
646
- udata/translations/udata.pot,sha256=a647v6Z3SgFqKC0JF4Ek-AiPJP8dc5mTIwoVS-JbHw4,34126
646
+ udata/translations/udata.pot,sha256=bwuTDKVNnE_SzI8q2tXjP_vKjaibJdPj3k3KG063t6Q,35535
647
647
  udata/translations/ar/LC_MESSAGES/udata.mo,sha256=1UE8wTBVizkyYnF0t3LbLckTZWjw_RER3ngiAaWER7Y,12665
648
648
  udata/translations/ar/LC_MESSAGES/udata.po,sha256=7J2KVGx7S8a9BEWHt-oYm3UIa5zU6vomh9aMgwTx868,39544
649
649
  udata/translations/de/LC_MESSAGES/udata.mo,sha256=FB0H3tMWJ6TUBz92NIlkSk2LqjZtMzA7CxozjePCXQc,16061
@@ -658,9 +658,9 @@ udata/translations/pt/LC_MESSAGES/udata.mo,sha256=dXTr2zzGPgclSMzAJo4qhOEVHYWYP7
658
658
  udata/translations/pt/LC_MESSAGES/udata.po,sha256=G-MNwE4Gih-4w-xNAjp7PAvQOeW1uyM-27Z6O08_SCc,42104
659
659
  udata/translations/sr/LC_MESSAGES/udata.mo,sha256=5bvKeJp9nqk76tZsgbGC2qnbpJws5lODdMcezr6LKbQ,28553
660
660
  udata/translations/sr/LC_MESSAGES/udata.po,sha256=d_uBu93oIsmeewv8QzrB2Z8tmkUXn8juwT5OiySALog,48684
661
- udata-7.0.5.dev28098.dist-info/LICENSE,sha256=V8j_M8nAz8PvAOZQocyRDX7keai8UJ9skgmnwqETmdY,34520
662
- udata-7.0.5.dev28098.dist-info/METADATA,sha256=eAH3TpJbYw8a-Ljj_hUTYYMCWcmZNw_zHc3BSwm2hjs,119210
663
- udata-7.0.5.dev28098.dist-info/WHEEL,sha256=-G_t0oGuE7UD0DrSpVZnq1hHMBV9DD2XkS5v7XpmTnk,110
664
- udata-7.0.5.dev28098.dist-info/entry_points.txt,sha256=ZqIUHhOth0MMQvMIeuhODbUCDwjR-Hvo7PaKrMwTKuQ,384
665
- udata-7.0.5.dev28098.dist-info/top_level.txt,sha256=39OCg-VWFWOq4gCKnjKNu-s3OwFlZIu_dVH8Gl6ndHw,12
666
- udata-7.0.5.dev28098.dist-info/RECORD,,
661
+ udata-7.0.5.dev28140.dist-info/LICENSE,sha256=V8j_M8nAz8PvAOZQocyRDX7keai8UJ9skgmnwqETmdY,34520
662
+ udata-7.0.5.dev28140.dist-info/METADATA,sha256=oa7WvgGwwX6nYfU4tQr2zLSI5lcrR6IocdoeiX12Zjg,119267
663
+ udata-7.0.5.dev28140.dist-info/WHEEL,sha256=-G_t0oGuE7UD0DrSpVZnq1hHMBV9DD2XkS5v7XpmTnk,110
664
+ udata-7.0.5.dev28140.dist-info/entry_points.txt,sha256=ZqIUHhOth0MMQvMIeuhODbUCDwjR-Hvo7PaKrMwTKuQ,384
665
+ udata-7.0.5.dev28140.dist-info/top_level.txt,sha256=39OCg-VWFWOq4gCKnjKNu-s3OwFlZIu_dVH8Gl6ndHw,12
666
+ udata-7.0.5.dev28140.dist-info/RECORD,,