wipo-gbd-transformation 1.1.52__py3-none-any.whl → 1.1.54__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 wipo-gbd-transformation might be problematic. Click here for more details.
- gbdtransformation/brands/catm/filters.py +2 -1
- gbdtransformation/brands/catm/template.yml +9 -5
- gbdtransformation/brands/istm/filters.py +1 -2
- gbdtransformation/brands/vctm/__init__.py +5 -0
- gbdtransformation/brands/vctm/filters.py +75 -0
- gbdtransformation/brands/vctm/schema +87 -0
- gbdtransformation/brands/vctm/template.yml +1 -0
- gbdtransformation/brands/vctm/tests/__init__.py +0 -0
- gbdtransformation/brands/vntm/filters.py +1 -3
- gbdtransformation/designs/alid/filters.py +13 -1
- gbdtransformation/designs/bgid/__init__.py +5 -0
- gbdtransformation/designs/bgid/filters.py +91 -0
- gbdtransformation/designs/bgid/schema +106 -0
- gbdtransformation/designs/bgid/template.yml +169 -0
- gbdtransformation/designs/bnid/filters.py +13 -1
- gbdtransformation/designs/bwid/filters.py +13 -1
- gbdtransformation/designs/crid/filters.py +14 -1
- gbdtransformation/designs/cuid/filters.py +14 -1
- gbdtransformation/designs/egid/filters.py +14 -1
- gbdtransformation/designs/filters.py +10 -3
- gbdtransformation/designs/idid/filters.py +14 -1
- gbdtransformation/designs/ipas/filters.py +83 -0
- gbdtransformation/designs/ipas/template.yml +15 -15
- gbdtransformation/designs/joid/filters.py +14 -1
- gbdtransformation/designs/keid/filters.py +14 -1
- gbdtransformation/designs/khid/filters.py +14 -1
- gbdtransformation/designs/laid/filters.py +13 -1
- gbdtransformation/designs/mnid/filters.py +14 -1
- gbdtransformation/designs/myid/filters.py +13 -1
- gbdtransformation/designs/phid/filters.py +13 -1
- gbdtransformation/designs/sgid/filters.py +14 -1
- gbdtransformation/designs/thid/filters.py +13 -1
- gbdtransformation/designs/tnid/filters.py +13 -1
- gbdtransformation/designs/vnid/filters.py +13 -1
- gbdtransformation/designs/woid/filters.py +37 -16
- gbdtransformation/designs/woid/template.yml +177 -3
- gbdtransformation/designs/xxid/template.yml +128 -6
- gbdtransformation/execs.py +3 -2
- {wipo_gbd_transformation-1.1.52.dist-info → wipo_gbd_transformation-1.1.54.dist-info}/METADATA +3 -3
- {wipo_gbd_transformation-1.1.52.dist-info → wipo_gbd_transformation-1.1.54.dist-info}/RECORD +45 -35
- wipo_gbd_transformation-1.1.54.dist-info/SOURCES_Stefans-Mac-Studio.local_Sep-18-063455-2024_Conflict.txt +690 -0
- {wipo_gbd_transformation-1.1.52.dist-info → wipo_gbd_transformation-1.1.54.dist-info}/WHEEL +1 -1
- {wipo_gbd_transformation-1.1.52.dist-info → wipo_gbd_transformation-1.1.54.dist-info}/LICENSE.md +0 -0
- {wipo_gbd_transformation-1.1.52.dist-info → wipo_gbd_transformation-1.1.54.dist-info}/entry_points.txt +0 -0
- {wipo_gbd_transformation-1.1.52.dist-info → wipo_gbd_transformation-1.1.54.dist-info}/top_level.txt +0 -0
|
@@ -21,7 +21,7 @@ designatedCountries:
|
|
|
21
21
|
|
|
22
22
|
# can be deduced from appnum given office cc and (optional) appdate
|
|
23
23
|
# note: we pass registration date when we don't have application or filing date, not rare with with Hague records
|
|
24
|
-
st13: {{ ApplicationNumber | st13('WO', 0, appdate=appdate) }}
|
|
24
|
+
st13: {{ ApplicationNumber | st13(HagueExpressTransaction.HagueCurrent.HagueRegistration.InternationalRegistrationNumber, 'WO', 0, appdate=appdate) }}
|
|
25
25
|
|
|
26
26
|
applicationNumber: {{ ApplicationNumber }}
|
|
27
27
|
|
|
@@ -34,7 +34,16 @@ registrationNumber: {{ HagueExpressTransaction.HagueCurrent.HagueRegistration.In
|
|
|
34
34
|
# some collections we can guess registration date
|
|
35
35
|
# from event list
|
|
36
36
|
registrationDate: {{ HagueExpressTransaction.HagueCurrent.HagueRegistration.InternationalRegistrationDate }}
|
|
37
|
-
|
|
37
|
+
|
|
38
|
+
{% if HagueExpressTransaction.HagueCurrent.HagueRegistration.PublicationDate %}
|
|
39
|
+
publicationDates:
|
|
40
|
+
- {{ HagueExpressTransaction.HagueCurrent.HagueRegistration.PublicationDate }}
|
|
41
|
+
earliestPublicationDate: {{ HagueExpressTransaction.HagueCurrent.HagueRegistration.PublicationDate }}
|
|
42
|
+
{% else %}
|
|
43
|
+
publicationDates:
|
|
44
|
+
- {{ HagueExpressTransaction.HagueHistory[0].PublicationDate }}
|
|
45
|
+
earliestPublicationDate: {{ HagueExpressTransaction.HagueHistory[0].PublicationDate }}
|
|
46
|
+
{% endif %}
|
|
38
47
|
|
|
39
48
|
# In Hague, default deferment period is 30 months after priority date or application date,
|
|
40
49
|
# but it can be lower for some Hague contracting parties, so deferment expiry date is a good
|
|
@@ -99,6 +108,61 @@ applicants:
|
|
|
99
108
|
entitlementDomiciled: {{ holder.Entitlement.EntitlementDomiciled.EntitlementDomiciledCode }}
|
|
100
109
|
{% endcall %}
|
|
101
110
|
|
|
111
|
+
applicantsNormalized:
|
|
112
|
+
{% call(holder) match('HolderNormalized', HagueExpressTransaction.HagueCurrent.HagueRegistration.HolderBag) %}
|
|
113
|
+
- identifier:
|
|
114
|
+
|
|
115
|
+
{% set ns = namespace(kind='organization') %}
|
|
116
|
+
{% call(name) match('Name', holder.Contact) %}
|
|
117
|
+
{% if name.PersonName %}
|
|
118
|
+
{% set ns.kind = 'person' %}
|
|
119
|
+
{% endif %}
|
|
120
|
+
{% endcall %}
|
|
121
|
+
kind: {{ ns.kind }}
|
|
122
|
+
|
|
123
|
+
{% call(name) match('Name', holder.Contact) %}
|
|
124
|
+
{% if name.PersonName %}
|
|
125
|
+
firstName:
|
|
126
|
+
- languageCode: {{ HagueExpressTransaction.HagueCurrent.HagueRegistration.FilingLanguageCode | should_display_language(name.PersonName.PersonStructuredName.FirstName) }}
|
|
127
|
+
text: {{ name.PersonName.PersonStructuredName.FirstName }}
|
|
128
|
+
lastName:
|
|
129
|
+
- languageCode: {{ HagueExpressTransaction.HagueCurrent.HagueRegistration.FilingLanguageCode | should_display_language(name.PersonName.PersonStructuredName.LastName) }}
|
|
130
|
+
text: {{ name.PersonName.PersonStructuredName.LastName }}
|
|
131
|
+
middleName:
|
|
132
|
+
- languageCode: {{ HagueExpressTransaction.HagueCurrent.HagueRegistration.FilingLanguageCode | should_display_language(name.PersonName.PersonStructuredName.MiddleName) }}
|
|
133
|
+
text: {{ name.PersonName.PersonStructuredName.MiddleName }}
|
|
134
|
+
{% endif %}
|
|
135
|
+
|
|
136
|
+
{% if name.OrganizationName %}
|
|
137
|
+
orgName:
|
|
138
|
+
- languageCode: {{ HagueExpressTransaction.HagueCurrent.HagueRegistration.FilingLanguageCode }}
|
|
139
|
+
text: {{ name.OrganizationName.OrganizationStandardName }}
|
|
140
|
+
{% endif %}
|
|
141
|
+
{% endcall %}
|
|
142
|
+
|
|
143
|
+
fullAddress:
|
|
144
|
+
{% call(postalAddress) match('PostalAddress', holder.Contact.PostalAddressBag) %}
|
|
145
|
+
- languageCode: {{ HagueExpressTransaction.HagueCurrent.HagueRegistration.FilingLanguageCode }}
|
|
146
|
+
#text: {{ postalAddress.PostalStructuredAddress | format_complete_address }}
|
|
147
|
+
addressLine: {{ postalAddress.PostalStructuredAddress.AddressLineText }}
|
|
148
|
+
cityName: {{ postalAddress.PostalStructuredAddress.CityName }}
|
|
149
|
+
geographicRegionName: {{ postalAddress.PostalStructuredAddress.GeographicRegionName }}
|
|
150
|
+
postalCode: {{ postalAddress.PostalStructuredAddress.PostalCode }}
|
|
151
|
+
postalBox: {{ postalAddress.PostalStructuredAddress.PostalBox }}
|
|
152
|
+
countryCode: {{ postalAddress.PostalStructuredAddress.CountryCode }}
|
|
153
|
+
{% endcall %}
|
|
154
|
+
|
|
155
|
+
processingTool:
|
|
156
|
+
name: {{ holder.Contact._type }}
|
|
157
|
+
version: {{ holder.Contact._subtype }}
|
|
158
|
+
processingDate: {{ holder.Contact._when }}
|
|
159
|
+
|
|
160
|
+
entitlement:
|
|
161
|
+
entitlementNationalityCode: {{ holder.Entitlement.EntitlementNationalityCode }}
|
|
162
|
+
entitlementEstablishment: {{ holder.Entitlement.EntitlementEstablishment.EntitlementEstablishmentCode }}
|
|
163
|
+
entitlementDomiciled: {{ holder.Entitlement.EntitlementDomiciled.EntitlementDomiciledCode }}
|
|
164
|
+
{% endcall %}
|
|
165
|
+
|
|
102
166
|
representatives:
|
|
103
167
|
{% call(representative) match('Representative', HagueExpressTransaction.HagueCurrent.HagueRegistration.RepresentativeBag) %}
|
|
104
168
|
- identifier:
|
|
@@ -136,6 +200,56 @@ representatives:
|
|
|
136
200
|
{% endcall %}
|
|
137
201
|
{% endcall %}
|
|
138
202
|
|
|
203
|
+
representativesNormalized:
|
|
204
|
+
{% call(representative) match('RepresentativeNormalized', HagueExpressTransaction.HagueCurrent.HagueRegistration.RepresentativeBag) %}
|
|
205
|
+
- identifier:
|
|
206
|
+
|
|
207
|
+
{% set ns = namespace(kind='organization') %}
|
|
208
|
+
{% call(name) match('Name', representative.Contact) %}
|
|
209
|
+
{% if name.PersonName %}
|
|
210
|
+
{% set ns.kind = 'person' %}
|
|
211
|
+
{% endif %}
|
|
212
|
+
{% endcall %}
|
|
213
|
+
kind: {{ ns.kind }}
|
|
214
|
+
|
|
215
|
+
{% call(name) match('Name', representative.Contact) %}
|
|
216
|
+
{% if name.PersonName %}
|
|
217
|
+
firstName:
|
|
218
|
+
- languageCode: {{ HagueExpressTransaction.HagueCurrent.HagueRegistration.FilingLanguageCode | should_display_language(name.PersonName.PersonStructuredName.FirstName) }}
|
|
219
|
+
text: {{ name.PersonName.PersonStructuredName.FirstName }}
|
|
220
|
+
lastName:
|
|
221
|
+
- languageCode: {{ HagueExpressTransaction.HagueCurrent.HagueRegistration.FilingLanguageCode | should_display_language(name.PersonName.PersonStructuredName.LastName) }}
|
|
222
|
+
text: {{ name.PersonName.PersonStructuredName.LastName }}
|
|
223
|
+
middleName:
|
|
224
|
+
- languageCode: {{ HagueExpressTransaction.HagueCurrent.HagueRegistration.FilingLanguageCode | should_display_language(name.PersonName.PersonStructuredName.MiddleName) }}
|
|
225
|
+
text: {{ name.PersonName.PersonStructuredName.MiddleName }}
|
|
226
|
+
{% endif %}
|
|
227
|
+
|
|
228
|
+
{% if name.OrganizationName %}
|
|
229
|
+
orgName:
|
|
230
|
+
- languageCode: {{ HagueExpressTransaction.HagueCurrent.HagueRegistration.FilingLanguageCode }}
|
|
231
|
+
text: {{ name.OrganizationName.OrganizationStandardName }}
|
|
232
|
+
{% endif %}
|
|
233
|
+
{% endcall %}
|
|
234
|
+
|
|
235
|
+
fullAddress:
|
|
236
|
+
{% call(postalAddress) match('PostalAddress', representative.Contact.PostalAddressBag) %}
|
|
237
|
+
- languageCode: {{ HagueExpressTransaction.HagueCurrent.HagueRegistration.FilingLanguageCode }}
|
|
238
|
+
#text: {{ postalAddress.PostalStructuredAddress | format_complete_address }}
|
|
239
|
+
addressLine: {{ postalAddress.PostalStructuredAddress.AddressLineText }}
|
|
240
|
+
cityName: {{ postalAddress.PostalStructuredAddress.CityName }}
|
|
241
|
+
geographicRegionName: {{ postalAddress.PostalStructuredAddress.GeographicRegionName }}
|
|
242
|
+
postalCode: {{ postalAddress.PostalStructuredAddress.PostalCode }}
|
|
243
|
+
postalBox: {{ postalAddress.PostalStructuredAddress.PostalBox }}
|
|
244
|
+
countryCode: {{ postalAddress.PostalStructuredAddress.CountryCode }}
|
|
245
|
+
{% endcall %}
|
|
246
|
+
|
|
247
|
+
processingTool:
|
|
248
|
+
name: {{ representative.Contact._type }}
|
|
249
|
+
version: {{ representative.Contact._subtype }}
|
|
250
|
+
processingDate: {{ representative.Contact._when }}
|
|
251
|
+
{% endcall %}
|
|
252
|
+
|
|
139
253
|
designClaim:
|
|
140
254
|
# updated for supporting Hague data
|
|
141
255
|
{% if HagueExpressTransaction.HagueCurrent.HagueRegistration.DesignClaimBag.DesignClaim.DesignClaimTextBag %}
|
|
@@ -255,6 +369,56 @@ designs:
|
|
|
255
369
|
{% endcall %}
|
|
256
370
|
{% endcall %}
|
|
257
371
|
|
|
372
|
+
designerNormalized:
|
|
373
|
+
{% call(designer) match('DesignerNormalized', design.DesignerBag) %}
|
|
374
|
+
- identifier:
|
|
375
|
+
|
|
376
|
+
{% set ns = namespace(kind='organization') %}
|
|
377
|
+
{% call(name) match('Name', designer.Contact) %}
|
|
378
|
+
{% if name.PersonName %}
|
|
379
|
+
{% set ns.kind = 'person' %}
|
|
380
|
+
{% endif %}
|
|
381
|
+
{% endcall %}
|
|
382
|
+
kind: {{ ns.kind }}
|
|
383
|
+
|
|
384
|
+
{% call(name) match('Name', designer.Contact) %}
|
|
385
|
+
{% if name.PersonName %}
|
|
386
|
+
firstName:
|
|
387
|
+
- languageCode: {{ HagueExpressTransaction.HagueCurrent.HagueRegistration.FilingLanguageCode | should_display_language(name.PersonName.PersonStructuredName.FirstName) }}
|
|
388
|
+
text: {{ name.PersonName.PersonStructuredName.FirstName }}
|
|
389
|
+
lastName:
|
|
390
|
+
- languageCode: {{ HagueExpressTransaction.HagueCurrent.HagueRegistration.FilingLanguageCode | should_display_language(name.PersonName.PersonStructuredName.LastName) }}
|
|
391
|
+
text: {{ name.PersonName.PersonStructuredName.LastName }}
|
|
392
|
+
middleName:
|
|
393
|
+
- languageCode: {{ HagueExpressTransaction.HagueCurrent.HagueRegistration.FilingLanguageCode | should_display_language(name.PersonName.PersonStructuredName.MiddleName) }}
|
|
394
|
+
text: {{ name.PersonName.PersonStructuredName.MiddleName }}
|
|
395
|
+
{% endif %}
|
|
396
|
+
|
|
397
|
+
{% if name.OrganizationName %}
|
|
398
|
+
orgName:
|
|
399
|
+
- languageCode: {{ HagueExpressTransaction.HagueCurrent.HagueRegistration.FilingLanguageCode }}
|
|
400
|
+
text: {{ name.OrganizationName.OrganizationStandardName }}
|
|
401
|
+
{% endif %}
|
|
402
|
+
{% endcall %}
|
|
403
|
+
|
|
404
|
+
fullAddress:
|
|
405
|
+
{% call(postalAddress) match('PostalAddress', designer.Contact.PostalAddressBag) %}
|
|
406
|
+
- languageCode: {{ HagueExpressTransaction.HagueCurrent.HagueRegistration.FilingLanguageCode }}
|
|
407
|
+
#text: {{ postalAddress.PostalStructuredAddress | format_complete_address }}
|
|
408
|
+
addressLine: {{ postalAddress.PostalStructuredAddress.AddressLineText }}
|
|
409
|
+
cityName: {{ postalAddress.PostalStructuredAddress.CityName }}
|
|
410
|
+
geographicRegionName: {{ postalAddress.PostalStructuredAddress.GeographicRegionName }}
|
|
411
|
+
postalCode: {{ postalAddress.PostalStructuredAddress.PostalCode }}
|
|
412
|
+
postalBox: {{ postalAddress.PostalStructuredAddress.PostalBox }}
|
|
413
|
+
countryCode: {{ postalAddress.PostalStructuredAddress.CountryCode }}
|
|
414
|
+
{% endcall %}
|
|
415
|
+
|
|
416
|
+
processingTool:
|
|
417
|
+
name: {{ designer.Contact._type }}
|
|
418
|
+
version: {{ designer.Contact._subtype }}
|
|
419
|
+
processingDate: {{ designer.Contact._when }}
|
|
420
|
+
{% endcall %}
|
|
421
|
+
|
|
258
422
|
productIndicationClasses:
|
|
259
423
|
kind: "Locarno"
|
|
260
424
|
version: {{ design.LocarnoClassificationBag.LocarnoClassificationEdition }}
|
|
@@ -339,4 +503,14 @@ extra:
|
|
|
339
503
|
{% endcall %}
|
|
340
504
|
|
|
341
505
|
{% endcall %}
|
|
342
|
-
|
|
506
|
+
|
|
507
|
+
history:
|
|
508
|
+
{% call(history) match('HagueHistory', HagueExpressTransaction) %}
|
|
509
|
+
|
|
510
|
+
- sequenceNumber: {{ history._sequenceNumber }}
|
|
511
|
+
hagueBulletinNumber: {{ history.HagueBulletinNumber }}
|
|
512
|
+
publicationDate: {{ history.PublicationDate }}
|
|
513
|
+
eventType: {{ history | get_event_type() }}
|
|
514
|
+
content: {{ history | serialize() }}
|
|
515
|
+
|
|
516
|
+
{% endcall %}
|
|
@@ -12,7 +12,7 @@ designatedCountries:
|
|
|
12
12
|
|
|
13
13
|
# some collections indicate that the application
|
|
14
14
|
# originates from international filing and provide IR number
|
|
15
|
-
|
|
15
|
+
reference:
|
|
16
16
|
application:
|
|
17
17
|
- number:
|
|
18
18
|
date:
|
|
@@ -25,8 +25,8 @@ referece:
|
|
|
25
25
|
# rarely passed
|
|
26
26
|
filingPlace:
|
|
27
27
|
|
|
28
|
-
# can be deduced from appnum given office cc and (optional) appdate
|
|
29
|
-
st13: # {{ Design.ApplicationNumber | st13('XX', appdate=... }}
|
|
28
|
+
# can be deduced from appnum given office cc and (optional) appdate, if no application number, fallback to registration number
|
|
29
|
+
st13: # {{ Design.ApplicationNumber | st13(registrationNumber, 'XX', appdate=... }}
|
|
30
30
|
|
|
31
31
|
applicationNumber:
|
|
32
32
|
# dates can be converted if not matching expected format
|
|
@@ -38,7 +38,14 @@ registrationNumber:
|
|
|
38
38
|
# some collections we can guess registration date
|
|
39
39
|
# from event list
|
|
40
40
|
registrationDate:
|
|
41
|
-
|
|
41
|
+
|
|
42
|
+
# this is a list
|
|
43
|
+
publicationDates:
|
|
44
|
+
- str (date)
|
|
45
|
+
|
|
46
|
+
# for novelty search
|
|
47
|
+
earliestPublicationDate:
|
|
48
|
+
|
|
42
49
|
effectiveDate:
|
|
43
50
|
defermentExpiryDate:
|
|
44
51
|
expiryDate:
|
|
@@ -47,7 +54,6 @@ applicationLanguageCode:
|
|
|
47
54
|
# rarely passed
|
|
48
55
|
secondLanguageCode:
|
|
49
56
|
|
|
50
|
-
|
|
51
57
|
applicants:
|
|
52
58
|
- identifier:
|
|
53
59
|
kind:
|
|
@@ -71,6 +77,39 @@ applicants:
|
|
|
71
77
|
countryCode:
|
|
72
78
|
postalCode:
|
|
73
79
|
countryCode: # sometimes, country name is provided instead
|
|
80
|
+
entitlement:
|
|
81
|
+
entitlementNationalityCode:
|
|
82
|
+
entitlementEstablishment:
|
|
83
|
+
entitlementDomiciled:
|
|
84
|
+
|
|
85
|
+
applicantsNormalized:
|
|
86
|
+
- identifier:
|
|
87
|
+
kind:
|
|
88
|
+
orgName:
|
|
89
|
+
- languageCode:
|
|
90
|
+
text:
|
|
91
|
+
firstName:
|
|
92
|
+
- languageCode:
|
|
93
|
+
text:
|
|
94
|
+
lastName:
|
|
95
|
+
- languageCode:
|
|
96
|
+
text:
|
|
97
|
+
middleName:
|
|
98
|
+
- languageCode:
|
|
99
|
+
text:
|
|
100
|
+
fullAddress:
|
|
101
|
+
- languageCode:
|
|
102
|
+
addressLine:
|
|
103
|
+
cityName:
|
|
104
|
+
geographicRegionName:
|
|
105
|
+
countryCode:
|
|
106
|
+
country:
|
|
107
|
+
postalCode:
|
|
108
|
+
postalBox:
|
|
109
|
+
processingTool:
|
|
110
|
+
name:
|
|
111
|
+
version:
|
|
112
|
+
processingDate:
|
|
74
113
|
|
|
75
114
|
representatives:
|
|
76
115
|
- identifier:
|
|
@@ -96,6 +135,34 @@ representatives:
|
|
|
96
135
|
postalCode:
|
|
97
136
|
countryCode: # sometimes, country name is provided instead
|
|
98
137
|
|
|
138
|
+
representativesNormalized:
|
|
139
|
+
- identifier:
|
|
140
|
+
kind:
|
|
141
|
+
orgName:
|
|
142
|
+
- languageCode:
|
|
143
|
+
text:
|
|
144
|
+
firstName:
|
|
145
|
+
- languageCode:
|
|
146
|
+
text:
|
|
147
|
+
lastName:
|
|
148
|
+
- languageCode:
|
|
149
|
+
text:
|
|
150
|
+
middleName:
|
|
151
|
+
- languageCode:
|
|
152
|
+
text:
|
|
153
|
+
fullAddress:
|
|
154
|
+
- languageCode:
|
|
155
|
+
addressLine:
|
|
156
|
+
cityName:
|
|
157
|
+
geographicRegionName:
|
|
158
|
+
countryCode:
|
|
159
|
+
country:
|
|
160
|
+
postalCode:
|
|
161
|
+
postalBox:
|
|
162
|
+
processingTool:
|
|
163
|
+
name:
|
|
164
|
+
version:
|
|
165
|
+
processingDate:
|
|
99
166
|
|
|
100
167
|
correspondence:
|
|
101
168
|
fullName:
|
|
@@ -119,6 +186,33 @@ correspondence:
|
|
|
119
186
|
postalCode:
|
|
120
187
|
countryCode: # sometimes, country name is provided instead
|
|
121
188
|
|
|
189
|
+
correspondenceNormalized:
|
|
190
|
+
kind:
|
|
191
|
+
orgName:
|
|
192
|
+
- languageCode:
|
|
193
|
+
text:
|
|
194
|
+
firstName:
|
|
195
|
+
- languageCode:
|
|
196
|
+
text:
|
|
197
|
+
lastName:
|
|
198
|
+
- languageCode:
|
|
199
|
+
text:
|
|
200
|
+
middleName:
|
|
201
|
+
- languageCode:
|
|
202
|
+
text:
|
|
203
|
+
fullAddress:
|
|
204
|
+
- languageCode:
|
|
205
|
+
addressLine:
|
|
206
|
+
cityName:
|
|
207
|
+
geographicRegionName:
|
|
208
|
+
countryCode:
|
|
209
|
+
country:
|
|
210
|
+
postalCode:
|
|
211
|
+
postalBox:
|
|
212
|
+
processingTool:
|
|
213
|
+
name:
|
|
214
|
+
version:
|
|
215
|
+
processingDate:
|
|
122
216
|
|
|
123
217
|
designClaim:
|
|
124
218
|
claims:
|
|
@@ -186,12 +280,40 @@ designs:
|
|
|
186
280
|
postalCode:
|
|
187
281
|
countryCode: # sometimes, country name is provided instead
|
|
188
282
|
|
|
283
|
+
designerNormalized:
|
|
284
|
+
- identifier:
|
|
285
|
+
kind:
|
|
286
|
+
orgName:
|
|
287
|
+
- languageCode:
|
|
288
|
+
text:
|
|
289
|
+
firstName:
|
|
290
|
+
- languageCode:
|
|
291
|
+
text:
|
|
292
|
+
lastName:
|
|
293
|
+
- languageCode:
|
|
294
|
+
text:
|
|
295
|
+
middleName:
|
|
296
|
+
- languageCode:
|
|
297
|
+
text:
|
|
298
|
+
fullAddress:
|
|
299
|
+
- languageCode:
|
|
300
|
+
addressLine:
|
|
301
|
+
cityName:
|
|
302
|
+
geographicRegionName:
|
|
303
|
+
countryCode:
|
|
304
|
+
country:
|
|
305
|
+
postalCode:
|
|
306
|
+
postalBox:
|
|
307
|
+
processingTool:
|
|
308
|
+
name:
|
|
309
|
+
version:
|
|
310
|
+
processingDate:
|
|
311
|
+
|
|
189
312
|
productIndicationClasses:
|
|
190
313
|
- kind: Locarno/US/CA/Etc
|
|
191
314
|
version: #mostly
|
|
192
315
|
classes:
|
|
193
316
|
- code:
|
|
194
|
-
description:
|
|
195
317
|
|
|
196
318
|
exhibition:
|
|
197
319
|
- date:
|
gbdtransformation/execs.py
CHANGED
|
@@ -627,9 +627,10 @@ def run():
|
|
|
627
627
|
import json
|
|
628
628
|
for rest in results:
|
|
629
629
|
st13 = json.loads(rest['out'])['st13']
|
|
630
|
-
appnumber = json.loads(rest['out'])
|
|
630
|
+
appnumber = json.loads(rest['out']).get('applicationNumber')
|
|
631
|
+
registration_number = json.loads(rest['out']).get('registrationNumber')
|
|
631
632
|
if st13 in st13s:
|
|
632
|
-
print(st13, appnumber, l2[l1.index(st13)])
|
|
633
|
+
print(st13, appnumber, registration_number, l2[l1.index(st13)])
|
|
633
634
|
else:
|
|
634
635
|
l1.append(st13)
|
|
635
636
|
l2.append(appnumber)
|
{wipo_gbd_transformation-1.1.52.dist-info → wipo_gbd_transformation-1.1.54.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: wipo-gbd-transformation
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.54
|
|
4
4
|
Summary: GBD XML ETL package
|
|
5
5
|
Home-page: https://github.com/GBD-Wipo/xmlE
|
|
6
6
|
Author: WIPO GDB team
|
|
@@ -9,12 +9,12 @@ Keywords: gbdtransformation
|
|
|
9
9
|
Classifier: Programming Language :: Python :: 3.6
|
|
10
10
|
License-File: LICENSE.md
|
|
11
11
|
Requires-Dist: boto3
|
|
12
|
-
Requires-Dist: jinja2
|
|
12
|
+
Requires-Dist: jinja2 ==2.11.2
|
|
13
13
|
Requires-Dist: xmltodict
|
|
14
14
|
Requires-Dist: dicttoxml
|
|
15
15
|
Requires-Dist: PyYAML
|
|
16
16
|
Requires-Dist: munch
|
|
17
17
|
Requires-Dist: tabulate
|
|
18
|
-
Requires-Dist: markupsafe
|
|
18
|
+
Requires-Dist: markupsafe ==2.0.1
|
|
19
19
|
|
|
20
20
|
GBD XML ETL package
|
{wipo_gbd_transformation-1.1.52.dist-info → wipo_gbd_transformation-1.1.54.dist-info}/RECORD
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
gbdtransformation/.DS_Store,sha256=0P5iuLZ7zgY5l38MNfo5m8w3yfR_rIdKFFFjvnF0ws4,6148
|
|
2
2
|
gbdtransformation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
gbdtransformation/execs.py,sha256=
|
|
3
|
+
gbdtransformation/execs.py,sha256=H1TxxWGWzZsEUfqgp0Pg7olmWeFMKDonTRyxEc2Lgb8,25120
|
|
4
4
|
gbdtransformation/parser.py,sha256=m6b1J0kJEaEDc0I8HKxzzN2nsQWKFfLlQqS3nT02kb4,7074
|
|
5
5
|
gbdtransformation/renders.py,sha256=RmvQgugnG2ErvDxP4I9yovW67gEZNpOd59nrzEYfQPI,4555
|
|
6
6
|
gbdtransformation/brands/__init__.py,sha256=abDdinNkilR-qYg4dhVxP_e1-ZixCzVuHGxbFt710TE,1605
|
|
@@ -64,9 +64,9 @@ gbdtransformation/brands/bztm/schema,sha256=AP0MxQyD0hY4APRh8nxitlxMqJYJB4AaaTJ8
|
|
|
64
64
|
gbdtransformation/brands/bztm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
65
65
|
gbdtransformation/brands/bztm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
66
|
gbdtransformation/brands/catm/__init__.py,sha256=pMtR-N5slJD0QHJU36_dbeWyqoqn4Q0eaMOmfO4Ed_o,270
|
|
67
|
-
gbdtransformation/brands/catm/filters.py,sha256=
|
|
67
|
+
gbdtransformation/brands/catm/filters.py,sha256=iZOJFFpmXySl08VWkLDF3cMqFxW3ZGclTIXfG20HW-A,8216
|
|
68
68
|
gbdtransformation/brands/catm/schema,sha256=Xace88lwiEefhHkk6Zg12dzVF237nMy06HMISEXaTwk,34762
|
|
69
|
-
gbdtransformation/brands/catm/template.yml,sha256=
|
|
69
|
+
gbdtransformation/brands/catm/template.yml,sha256=AwAv3VPRY2VmoyTyPZCwKdRJSmYdVUTRpJj4Zv3uqrM,9861
|
|
70
70
|
gbdtransformation/brands/chtm/__init__.py,sha256=HPYmDCQ41vkuoXSA94CRtqN_pEKDaUhbpXLOBqlaumQ,130
|
|
71
71
|
gbdtransformation/brands/chtm/filters.py,sha256=920M3dD2ag6RmotTQJwrGaxnsuI5VvTwsdZsYwDxcVI,5174
|
|
72
72
|
gbdtransformation/brands/chtm/schema,sha256=PWp5xUNXHbOt3U2zQKelVOKIbH0OYqNmwzkcB3QucuE,1385
|
|
@@ -170,7 +170,7 @@ gbdtransformation/brands/ipas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
|
170
170
|
gbdtransformation/brands/ipas/filters.py,sha256=cjHa9yciQfUWC2XehqcluwLODbajU8yZvleATpKI6-4,6561
|
|
171
171
|
gbdtransformation/brands/ipas/template.yml,sha256=TMD1OLKdxGN9XLc6gjTIArM0bXjT0hwQbam4PTvxAzE,7402
|
|
172
172
|
gbdtransformation/brands/istm/__init__.py,sha256=Odl0eAIHwvFrNHxJCqM-9Yht1kcLcXJSZDpJbSLXeq0,192
|
|
173
|
-
gbdtransformation/brands/istm/filters.py,sha256=
|
|
173
|
+
gbdtransformation/brands/istm/filters.py,sha256=KlqBtHmwxU8e4Y58elGqEMnzNf97ceqTS-FpyB1WgA0,2833
|
|
174
174
|
gbdtransformation/brands/istm/schema,sha256=iMcsysU2fLG9lQYr3rwsbt3U0oC8xrIrB0-XitQGsMg,789
|
|
175
175
|
gbdtransformation/brands/istm/template.yml,sha256=Eo7aW87OOyLeHpR7TwEejapKYFFevMfW7S26yH2IaL0,3660
|
|
176
176
|
gbdtransformation/brands/ittm/__init__.py,sha256=x7MEG0cRT7jOj2U9I4stffawL5ZOFcH3iywiNSsdXEQ,132
|
|
@@ -399,8 +399,13 @@ gbdtransformation/brands/uytm/__init__.py,sha256=UHmbQDIPDdApISBKfO9tKOX6LgUQ_Ib
|
|
|
399
399
|
gbdtransformation/brands/uytm/filters.py,sha256=i7SBMVTF70OERVdsS3Dfv19S3-9kyxE-y4aYA59YxA4,1976
|
|
400
400
|
gbdtransformation/brands/uytm/schema,sha256=uMd1E_XRVQ_wHVrGq5fqFH6Fyg8cWx2DTQbVvH8tmmA,3730
|
|
401
401
|
gbdtransformation/brands/uytm/template.yml,sha256=fLZVKwC0j6fAxv-kpngeSnGOZMiK-T_wWdxFmd4L7pc,5497
|
|
402
|
+
gbdtransformation/brands/vctm/__init__.py,sha256=EHssGg8NHP_ywIgUYk2fxpNtalIlSdpzuCOhUfbJuA8,86
|
|
403
|
+
gbdtransformation/brands/vctm/filters.py,sha256=sjw2IhCg0CYh0zeci5dL7VY8A2us8dHpigIi6JNCTYY,2138
|
|
404
|
+
gbdtransformation/brands/vctm/schema,sha256=AP0MxQyD0hY4APRh8nxitlxMqJYJB4AaaTJ8y20-XBA,3283
|
|
405
|
+
gbdtransformation/brands/vctm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
406
|
+
gbdtransformation/brands/vctm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
402
407
|
gbdtransformation/brands/vntm/__init__.py,sha256=po50MWZ7H_x6jhT_C83-HvsjAE0J8IQpubzvXwTqmgI,225
|
|
403
|
-
gbdtransformation/brands/vntm/filters.py,sha256=
|
|
408
|
+
gbdtransformation/brands/vntm/filters.py,sha256=R6qF0UGIHL3njBEXH5P_GI9I8Fyg1__HhTAvRwu92rw,2441
|
|
404
409
|
gbdtransformation/brands/vntm/schema,sha256=TFrF4FR76cytcbtQkDWxtF74I0tCPRDIvWRFeqaJt6Q,3242
|
|
405
410
|
gbdtransformation/brands/vntm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
406
411
|
gbdtransformation/brands/vntm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -467,90 +472,94 @@ gbdtransformation/commons/emrp/__init__.py,sha256=LPq1qlU4nPGFyKPsgKWZG9K2mV4vWR
|
|
|
467
472
|
gbdtransformation/commons/emrp/filters.py,sha256=CA7FRKxuhP1QVlB7hh6uIf7EVBXr1MkJ_NKAaP7nqBo,68
|
|
468
473
|
gbdtransformation/commons/emrp/template.yml,sha256=Zor0npqNLZfY9oFs7Ts-bwbsLlUJGmZMHi1cb35MQmI,1402
|
|
469
474
|
gbdtransformation/designs/__init__.py,sha256=0zM_Nw5d8cwxBsFq0NMxBRb21DiOUqgCb020CGJN_KY,242
|
|
470
|
-
gbdtransformation/designs/filters.py,sha256=
|
|
475
|
+
gbdtransformation/designs/filters.py,sha256=cFXAVGynjZjd5IX1CisEAfVhNLCMIZiu3xz1RUsX3zw,2584
|
|
471
476
|
gbdtransformation/designs/alid/__init__.py,sha256=U1i1Qng034s7l_2No1yJKbHvUSnMWl66ZLSinKMMS7Y,95
|
|
472
|
-
gbdtransformation/designs/alid/filters.py,sha256=
|
|
477
|
+
gbdtransformation/designs/alid/filters.py,sha256=bwE0eg3BCaoUlWT_U1BSvBIbKz1a2n0JTENJW-ZfD5s,1947
|
|
473
478
|
gbdtransformation/designs/alid/schema,sha256=4W6aAkQ4JFTzOEVGYRWlWpsieoIIWoVqhLLnGzI3MjM,3502
|
|
474
479
|
gbdtransformation/designs/alid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
480
|
+
gbdtransformation/designs/bgid/__init__.py,sha256=jLrJQ5nccnWItNDV4kmUdq-uo6ms500KnR9qchLry8Q,84
|
|
481
|
+
gbdtransformation/designs/bgid/filters.py,sha256=wDLEZ8GAtVl4UBVwtW59siB44tiSmJOCMDS-aKUEd7s,2897
|
|
482
|
+
gbdtransformation/designs/bgid/schema,sha256=WOLoyQZCQ_PYjsXODbJSE3vEPppqwm85K7thf5T7lKQ,3667
|
|
483
|
+
gbdtransformation/designs/bgid/template.yml,sha256=dAnTluo-554scf_FxYalZ7xHj8RfGfBIhFZurXAenZY,5860
|
|
475
484
|
gbdtransformation/designs/bnid/__init__.py,sha256=Y_X59eGmIFOkwWF4SkaxTQ3z7QAfIHGoL1VHM8ywbHo,87
|
|
476
|
-
gbdtransformation/designs/bnid/filters.py,sha256=
|
|
485
|
+
gbdtransformation/designs/bnid/filters.py,sha256=vx4rZhlOIYzpYfMvm8baxuKfQZWml8dW58oN_I_NT6M,1644
|
|
477
486
|
gbdtransformation/designs/bnid/schema,sha256=BSzYzhQUcv3cLI-rDSLEEcIAOxMSIgQClvfKDVVTyak,3145
|
|
478
487
|
gbdtransformation/designs/bnid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
479
488
|
gbdtransformation/designs/bwid/__init__.py,sha256=pzix_Sy_6D6uWvMeWsirR9n3jTWzrl5BjxD40JNRheQ,140
|
|
480
|
-
gbdtransformation/designs/bwid/filters.py,sha256=
|
|
489
|
+
gbdtransformation/designs/bwid/filters.py,sha256=sLDmJwIKas7UsshOnKqJw3v-6dV6GB0WQahWp3udEMk,1763
|
|
481
490
|
gbdtransformation/designs/bwid/schema,sha256=1r9dWYV65h_PoGOkhC9NcCM0n-co-_s3tipPbkA0_GU,4042
|
|
482
491
|
gbdtransformation/designs/bwid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
483
492
|
gbdtransformation/designs/crid/__init__.py,sha256=8EoYA1bg1glF-0Gsfnwy4EInbekNZLa_FFMYZXFW_VQ,88
|
|
484
|
-
gbdtransformation/designs/crid/filters.py,sha256=
|
|
493
|
+
gbdtransformation/designs/crid/filters.py,sha256=32KRvV_mWQGFd4asa069FoZ-thn1pSkpeClkq8RfX00,1707
|
|
485
494
|
gbdtransformation/designs/crid/schema,sha256=MsviyYOn0iDtlxZEPr-u4jfqBdkPb03OJNxDspjlz-I,3696
|
|
486
495
|
gbdtransformation/designs/crid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
487
496
|
gbdtransformation/designs/cuid/__init__.py,sha256=uc087GF8rJ3uwm5VRxZ1mqxxhz0MNQQWgjzKilsu080,93
|
|
488
|
-
gbdtransformation/designs/cuid/filters.py,sha256=
|
|
497
|
+
gbdtransformation/designs/cuid/filters.py,sha256=bo2qJ6ttq_qFzkedjsDMN5Mc0Cw_gOko7a8RD9H2z6k,1489
|
|
489
498
|
gbdtransformation/designs/cuid/schema,sha256=JZ_ZYSgaFIKAkT8DBc_jlUkCzrS5dNWU9GBTBsPA9-8,3857
|
|
490
499
|
gbdtransformation/designs/cuid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
491
500
|
gbdtransformation/designs/egid/__init__.py,sha256=7mgvG_Z35b9eE-1bOsv_0adbFhtjMA3oo7_RhUTVt-4,87
|
|
492
|
-
gbdtransformation/designs/egid/filters.py,sha256=
|
|
501
|
+
gbdtransformation/designs/egid/filters.py,sha256=mhaTzZbNjcDeRLQLiTGL3kJFJkPcu-fft_NdVPm2UIE,1635
|
|
493
502
|
gbdtransformation/designs/egid/schema,sha256=wYLahygD8w60xS0Cjiu7To2GmB1spODG3dx0GFawNr0,3202
|
|
494
503
|
gbdtransformation/designs/egid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
495
504
|
gbdtransformation/designs/idid/__init__.py,sha256=VkDcskZjJF6RN5GGF7CebAwffmoHA7bQyUFhwbgvHZ0,98
|
|
496
|
-
gbdtransformation/designs/idid/filters.py,sha256=
|
|
505
|
+
gbdtransformation/designs/idid/filters.py,sha256=Yr9uv_fnfnurUPILKV6aK5pW6NwrsHBtPR7Lv_hS8pk,1797
|
|
497
506
|
gbdtransformation/designs/idid/schema,sha256=wNCAOWV0H7CPQ1tnrZ4ClX5SnwgyGv3gBAiKz2h2Ijw,4092
|
|
498
507
|
gbdtransformation/designs/idid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
499
508
|
gbdtransformation/designs/ipas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
500
|
-
gbdtransformation/designs/ipas/filters.py,sha256=
|
|
501
|
-
gbdtransformation/designs/ipas/template.yml,sha256=
|
|
509
|
+
gbdtransformation/designs/ipas/filters.py,sha256=VnvR4Bj-W7ZlA9tBZLWlt-Lw7Vk53qCZwo5FmN1F01M,6711
|
|
510
|
+
gbdtransformation/designs/ipas/template.yml,sha256=86XUmvJr6598TWQ8T-nLCKY-V6MOxfbwCPHIfcrzrSs,8108
|
|
502
511
|
gbdtransformation/designs/joid/__init__.py,sha256=n3o4q-5ZgLxMOaw_ILCd-oXyQlRegHD29V308bWdhG4,129
|
|
503
|
-
gbdtransformation/designs/joid/filters.py,sha256=
|
|
512
|
+
gbdtransformation/designs/joid/filters.py,sha256=cXpeljaZMDYdRoz3B7IAN-F4RleOFa5ZcuROmlmXQCs,1649
|
|
504
513
|
gbdtransformation/designs/joid/schema,sha256=F2yRVbByiFoLfftr5-N8CU38-cMSeYE5yQPm3_fYw-A,3830
|
|
505
514
|
gbdtransformation/designs/joid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
506
515
|
gbdtransformation/designs/keid/__init__.py,sha256=3VPO0He0ST4Np7iu-GbganBs5nLpfAeEMS85mP0ZZQc,124
|
|
507
|
-
gbdtransformation/designs/keid/filters.py,sha256=
|
|
516
|
+
gbdtransformation/designs/keid/filters.py,sha256=6B7iiR7d2dRnynK3gBkxi2Mzrz0izmWNR3NhSHwOoPQ,1658
|
|
508
517
|
gbdtransformation/designs/keid/schema,sha256=PXmZWv6H9lE2Dyh6wd_ZfZdd73umFioDRkBX-u5n_i8,3914
|
|
509
518
|
gbdtransformation/designs/keid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
510
519
|
gbdtransformation/designs/khid/__init__.py,sha256=s1v2N-zkWufdXw6D644D_vnJL1vAsFZ9TSBZNCmvUnU,87
|
|
511
|
-
gbdtransformation/designs/khid/filters.py,sha256=
|
|
520
|
+
gbdtransformation/designs/khid/filters.py,sha256=kJ5-blSb1QRU8D032BgaTyQ9Jgq65_gsyElRUwQnXcQ,1646
|
|
512
521
|
gbdtransformation/designs/khid/schema,sha256=UADl14SH_-sRCY7D8Enf6FeH2al_1kTLWCVneCRtDJI,3968
|
|
513
522
|
gbdtransformation/designs/khid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
514
523
|
gbdtransformation/designs/laid/__init__.py,sha256=YM1Q1PEfEWCnqpX7UQMmwGGs4VVoly176mTcTIZtNKE,81
|
|
515
|
-
gbdtransformation/designs/laid/filters.py,sha256=
|
|
524
|
+
gbdtransformation/designs/laid/filters.py,sha256=AvcSiq7LPPF6M3dRg2XxU0D6D7QbYnTLK8KJM5NYfGk,1631
|
|
516
525
|
gbdtransformation/designs/laid/schema,sha256=jkMwyOhGR1tGpFL6Ovi55wpSpbHylu3UnGpLO-ynt_o,3684
|
|
517
526
|
gbdtransformation/designs/laid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
518
527
|
gbdtransformation/designs/mnid/__init__.py,sha256=iEM2BvQvr2FzismA4mcZu2thpz6Ak5PcFO81vxdxk68,125
|
|
519
|
-
gbdtransformation/designs/mnid/filters.py,sha256=
|
|
528
|
+
gbdtransformation/designs/mnid/filters.py,sha256=vZN5eWpoWdNLfTignhJYF7QFXdFbTpG73u_NrIpfXKs,1645
|
|
520
529
|
gbdtransformation/designs/mnid/schema,sha256=cL6vjXJsQNmJ-acerybZAQ2SP5xBR9FksDXRcwgJ8b8,3858
|
|
521
530
|
gbdtransformation/designs/mnid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
522
531
|
gbdtransformation/designs/myid/__init__.py,sha256=r7ki64LZqptIipzExxfEa-UFp_FsB3zyUi8UnmKydYo,122
|
|
523
|
-
gbdtransformation/designs/myid/filters.py,sha256=
|
|
532
|
+
gbdtransformation/designs/myid/filters.py,sha256=xSbAg6ShiR1GGra5C_9_t0QcBftUGQ1al1rITv5Opjs,1580
|
|
524
533
|
gbdtransformation/designs/myid/schema,sha256=3SYG1Pu6xMhTmasJYFgJlKr1Im8UUZKX9EjUHKUfY80,3785
|
|
525
534
|
gbdtransformation/designs/myid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
526
535
|
gbdtransformation/designs/phid/__init__.py,sha256=c2hjuzYjA2-okkbnfOTA4vCphr8CJX-aYFRWg_zwAJg,134
|
|
527
|
-
gbdtransformation/designs/phid/filters.py,sha256=
|
|
536
|
+
gbdtransformation/designs/phid/filters.py,sha256=EZoG-h7ZV6k8P_PSkEEReYZRWCIJrRW6FIrBIZwEmW0,1921
|
|
528
537
|
gbdtransformation/designs/phid/schema,sha256=UxP-sj3ONGQqW-2qSsLAVXpQU8ymPHZFm0AENKhrhOM,3754
|
|
529
538
|
gbdtransformation/designs/phid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
530
539
|
gbdtransformation/designs/sgid/__init__.py,sha256=_KSJwFiKqhUT1aLXgaPgr6fojPLqfmvPdkh_xpihPds,128
|
|
531
|
-
gbdtransformation/designs/sgid/filters.py,sha256=
|
|
540
|
+
gbdtransformation/designs/sgid/filters.py,sha256=8Wb9AKU6W9GLODH4D2gUxjGaTVlEoH3Z2aet57NCHXE,1765
|
|
532
541
|
gbdtransformation/designs/sgid/schema,sha256=0bNKAL6VKaiRu3TK3SZ9V-t6vqoN86pkiU3PfE2kr40,4501
|
|
533
542
|
gbdtransformation/designs/sgid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
534
543
|
gbdtransformation/designs/thid/__init__.py,sha256=hXLZOUHc4HHuGC-WOMKZDCJlgrHL6-EYjdyLW2GWDME,56
|
|
535
|
-
gbdtransformation/designs/thid/filters.py,sha256=
|
|
544
|
+
gbdtransformation/designs/thid/filters.py,sha256=txW_UeiUfKmFrIp9_Zxpf0Y3nMOL5gcj3aXhBBk4mis,1744
|
|
536
545
|
gbdtransformation/designs/thid/schema,sha256=nNz7rstNxaulw6nMr-65w7yVF0tgkDYob08gtB1i3WE,3912
|
|
537
546
|
gbdtransformation/designs/thid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
538
547
|
gbdtransformation/designs/tnid/__init__.py,sha256=um-XfQWW58iiIqrWdXTMbY1UQ9tG7h9e5kTehhb9vvc,93
|
|
539
|
-
gbdtransformation/designs/tnid/filters.py,sha256=
|
|
548
|
+
gbdtransformation/designs/tnid/filters.py,sha256=3pc0--Cnx9pIkUaAhkA7sdfP8I407V02e2lXPFgxJxg,1808
|
|
540
549
|
gbdtransformation/designs/tnid/schema,sha256=kkDxno6zbBk6qqxZs8JE9Y6lcpn9JJ8qE5885PhI7GE,3829
|
|
541
550
|
gbdtransformation/designs/tnid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
542
551
|
gbdtransformation/designs/vnid/__init__.py,sha256=JaV6-HeRUl11JwL9V7_uc8gBmSRj0pnKyAXftATfS4c,86
|
|
543
|
-
gbdtransformation/designs/vnid/filters.py,sha256=
|
|
552
|
+
gbdtransformation/designs/vnid/filters.py,sha256=HlZJp1Zb1zU37tZO-xBe0Kt-TlCT0nlBS4QbpK6Nq7Y,1701
|
|
544
553
|
gbdtransformation/designs/vnid/schema,sha256=HxkKmaih8mUTYZst9aIbEgv_uXhqS6PQp3C4S7utz18,3830
|
|
545
554
|
gbdtransformation/designs/vnid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
546
555
|
gbdtransformation/designs/woid/__init__.py,sha256=Cdy9Ki01mAvufymKb9QSLwfFggaoerOenq6BxhPu500,66
|
|
547
|
-
gbdtransformation/designs/woid/filters.py,sha256=
|
|
556
|
+
gbdtransformation/designs/woid/filters.py,sha256=0TAuOxP9Gj4Vds7zgRZ8X-lu9dndXDDTjnktbrI14Pg,16986
|
|
548
557
|
gbdtransformation/designs/woid/schema,sha256=DoJKgqrbOIPrrSJ7WcJM6aQpDqG34yD0MT7bsxauNpM,19967
|
|
549
|
-
gbdtransformation/designs/woid/template.yml,sha256=
|
|
558
|
+
gbdtransformation/designs/woid/template.yml,sha256=td3Y7vfssL569Anr4Sz1y11ejOZmbRbC_-xw2ON7Vk4,27778
|
|
550
559
|
gbdtransformation/designs/xxid/__init__.py,sha256=Cdy9Ki01mAvufymKb9QSLwfFggaoerOenq6BxhPu500,66
|
|
551
560
|
gbdtransformation/designs/xxid/filters.py,sha256=YCaQ6yH2LINwCQvbPHDhnORQyWglbswLlSOY6ur3KXQ,1874
|
|
552
561
|
gbdtransformation/designs/xxid/schema,sha256=KaFhfG6P5SE787wkAuME6hhpcg7vLnSb9x1rW_0EL3M,163
|
|
553
|
-
gbdtransformation/designs/xxid/template.yml,sha256=
|
|
562
|
+
gbdtransformation/designs/xxid/template.yml,sha256=m1V4DZqfFwGuMNDLDlCsiw_YjBVlGruga6AzVvzH6HA,6934
|
|
554
563
|
gbdtransformation/utilities/ISOCountryCodeType-V2006.xsd,sha256=T-QCdih6hFG7Tj_YlL7R0OyEmdAh1_NUDK_sMhVy4CI,41465
|
|
555
564
|
gbdtransformation/utilities/ISOCurrencyCodeType-V2001.xsd,sha256=FC0I3EPmeLfXeRGV25i7t5G8KXLHnX5m-pKHOYWNmSw,28868
|
|
556
565
|
gbdtransformation/utilities/ISOLanguageCodeType-V2002.xsd,sha256=ouRSwAnkVtjGLwZ50LXOW3V21lIWVlPw3yr9CcsVPRU,22147
|
|
@@ -563,9 +572,10 @@ gbdtransformation/utilities/st66.xsd,sha256=co8aFN3a5TpudllRttWmfLeiZu8ulNipfeXm
|
|
|
563
572
|
schemas/ShazamConfig.py,sha256=D67os5B11C41h_WZ7kk54Ss0Kk7tHh8W0d_1c_aX-lY,1191
|
|
564
573
|
schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
565
574
|
schemas/schema_extractor.py,sha256=3-ImtnI777f6b3VA0A_w-NoXdlGz5VZMzK6MnPdQQAY,10294
|
|
566
|
-
wipo_gbd_transformation-1.1.
|
|
567
|
-
wipo_gbd_transformation-1.1.
|
|
568
|
-
wipo_gbd_transformation-1.1.
|
|
569
|
-
wipo_gbd_transformation-1.1.
|
|
570
|
-
wipo_gbd_transformation-1.1.
|
|
571
|
-
wipo_gbd_transformation-1.1.
|
|
575
|
+
wipo_gbd_transformation-1.1.54.dist-info/LICENSE.md,sha256=6r2dL13EwZqSt2ellLbJRFTA-6ECIDOer4YthCfkac0,35654
|
|
576
|
+
wipo_gbd_transformation-1.1.54.dist-info/METADATA,sha256=PDsvsGpyapstphx6eWJ2Z32J2_SxtfRMe_IM0ClRg1U,517
|
|
577
|
+
wipo_gbd_transformation-1.1.54.dist-info/SOURCES_Stefans-Mac-Studio.local_Sep-18-063455-2024_Conflict.txt,sha256=NeGxpq7lHSg1kaKoQE1hRDhEL5c39TAp008ptbN08NU,29740
|
|
578
|
+
wipo_gbd_transformation-1.1.54.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
579
|
+
wipo_gbd_transformation-1.1.54.dist-info/entry_points.txt,sha256=NFLtlP3mPHUi-hEoUcz4CXa7vcpP8bbwd18HS4arbEk,223
|
|
580
|
+
wipo_gbd_transformation-1.1.54.dist-info/top_level.txt,sha256=oU1j-JNLga18Fd-EV6Xl9wM8zxYoNVEzb7P8MDhTPJg,26
|
|
581
|
+
wipo_gbd_transformation-1.1.54.dist-info/RECORD,,
|