wipo-gbd-transformation 1.1.51__py3-none-any.whl → 1.1.53__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/.DS_Store +0 -0
- gbdtransformation/brands/istm/filters.py +1 -2
- gbdtransformation/brands/lktm/__init__.py +5 -0
- gbdtransformation/brands/lktm/filters.py +83 -0
- gbdtransformation/brands/lktm/schema +87 -0
- gbdtransformation/brands/lktm/template.yml +1 -0
- gbdtransformation/brands/lktm/tests/__init__.py +0 -0
- gbdtransformation/brands/qatm/__init__.py +5 -0
- gbdtransformation/brands/qatm/filters.py +81 -0
- gbdtransformation/brands/qatm/schema +87 -0
- gbdtransformation/brands/qatm/template.yml +1 -0
- gbdtransformation/brands/qatm/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 +21 -16
- gbdtransformation/designs/woid/template.yml +11 -2
- gbdtransformation/designs/xxid/template.yml +10 -4
- gbdtransformation/execs.py +36 -3
- {wipo_gbd_transformation-1.1.51.dist-info → wipo_gbd_transformation-1.1.53.dist-info}/METADATA +4 -7
- {wipo_gbd_transformation-1.1.51.dist-info → wipo_gbd_transformation-1.1.53.dist-info}/RECORD +48 -33
- {wipo_gbd_transformation-1.1.51.dist-info → wipo_gbd_transformation-1.1.53.dist-info}/WHEEL +1 -1
- {wipo_gbd_transformation-1.1.51.dist-info → wipo_gbd_transformation-1.1.53.dist-info}/entry_points.txt +1 -1
- {wipo_gbd_transformation-1.1.51.dist-info → wipo_gbd_transformation-1.1.53.dist-info}/LICENSE.md +0 -0
- {wipo_gbd_transformation-1.1.51.dist-info → wipo_gbd_transformation-1.1.53.dist-info}/top_level.txt +0 -0
|
@@ -87,14 +87,15 @@ def getRefusalDate(histories, designIdentifier=None, countryCode=None):
|
|
|
87
87
|
'''
|
|
88
88
|
# check refusal
|
|
89
89
|
refusalDate = None
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
if
|
|
93
|
-
if
|
|
94
|
-
if
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
90
|
+
if histories != None:
|
|
91
|
+
for history in histories:
|
|
92
|
+
if "HagueRefusal" in history:
|
|
93
|
+
if designIdentifier == None or isAffectedDesignIdentifier(designIdentifier, history.HagueRefusal.AffectedDesign):
|
|
94
|
+
if countryCode == None or isApplicableToCountry(countryCode, history.HagueRefusal):
|
|
95
|
+
if "DecisionEffectiveDate" in history.HagueRefusal:
|
|
96
|
+
refusalDate = history.HagueRefusal.DecisionEffectiveDate
|
|
97
|
+
elif "DecisionDate" in history.HagueRefusal:
|
|
98
|
+
refusalDate = history.HagueRefusal.DecisionDate
|
|
98
99
|
return refusalDate
|
|
99
100
|
|
|
100
101
|
def build_person_name(name_struct):
|
|
@@ -169,7 +170,7 @@ def format_complete_address(PostalStructuredAddress):
|
|
|
169
170
|
def getOfficeStatusDate(registrationDate, expiryDate, histories, designIdentifier, countryCode=None):
|
|
170
171
|
expiryDate = getExpiryDate(expiryDate, histories, designIdentifier)
|
|
171
172
|
grantedDate = None
|
|
172
|
-
if countryCode != None:
|
|
173
|
+
if countryCode != None and histories != None:
|
|
173
174
|
# check possible renunciation including the particular country if specified
|
|
174
175
|
for history in histories:
|
|
175
176
|
if "HagueRenunciation" in history:
|
|
@@ -236,7 +237,7 @@ def getGbdStatus(registrationDate, expiryDate, histories, designIdentifier, coun
|
|
|
236
237
|
# if we have specified a country, check if the country is not part of a renunciation,
|
|
237
238
|
# then the status would be Ended for all design following Hague XML schema explanations
|
|
238
239
|
grantedDate = None
|
|
239
|
-
if countryCode != None:
|
|
240
|
+
if countryCode != None and histories != None:
|
|
240
241
|
for history in histories:
|
|
241
242
|
if "HagueRenunciation" in history:
|
|
242
243
|
# is the design identifier in the list of affected designs?
|
|
@@ -326,17 +327,21 @@ def isApplicableToCountry(countryCode, hagueHistoryEvent):
|
|
|
326
327
|
'''
|
|
327
328
|
Return True if the history event is applicable to the provided country
|
|
328
329
|
'''
|
|
330
|
+
if hagueHistoryEvent is None:
|
|
331
|
+
return False
|
|
332
|
+
|
|
329
333
|
if "RecordNotifyingOfficeCode" in hagueHistoryEvent:
|
|
330
334
|
if hagueHistoryEvent.RecordNotifyingOfficeCode == countryCode:
|
|
331
335
|
return True
|
|
332
336
|
elif "DesignatedCountryBag" in hagueHistoryEvent:
|
|
333
|
-
if
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
if
|
|
337
|
+
if hagueHistoryEvent.DesignatedCountryBag is not None:
|
|
338
|
+
if "DesignatedCountry" in hagueHistoryEvent.DesignatedCountryBag:
|
|
339
|
+
for designatedCountry in hagueHistoryEvent.DesignatedCountryBag.DesignatedCountry:
|
|
340
|
+
if isinstance(designatedCountry, str):
|
|
341
|
+
if hagueHistoryEvent.DesignatedCountryBag.DesignatedCountry.DesignatedCountryCode == countryCode:
|
|
342
|
+
return True
|
|
343
|
+
elif designatedCountry.DesignatedCountryCode == countryCode:
|
|
337
344
|
return True
|
|
338
|
-
elif designatedCountry.DesignatedCountryCode == countryCode:
|
|
339
|
-
return True
|
|
340
345
|
return False
|
|
341
346
|
|
|
342
347
|
|
|
@@ -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
|
|
@@ -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:
|
|
@@ -191,7 +198,6 @@ designs:
|
|
|
191
198
|
version: #mostly
|
|
192
199
|
classes:
|
|
193
200
|
- code:
|
|
194
|
-
description:
|
|
195
201
|
|
|
196
202
|
exhibition:
|
|
197
203
|
- date:
|
gbdtransformation/execs.py
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import shutil
|
|
2
|
+
|
|
1
3
|
import sys
|
|
2
4
|
import time
|
|
3
5
|
import argparse
|
|
@@ -445,6 +447,36 @@ def do_multiprocess(files, settings):
|
|
|
445
447
|
# results.append(tmp)
|
|
446
448
|
return results
|
|
447
449
|
|
|
450
|
+
def organize():
|
|
451
|
+
doc = """
|
|
452
|
+
organize input to output using a defined template name.
|
|
453
|
+
"""
|
|
454
|
+
configs = [{
|
|
455
|
+
'name': ['path'],
|
|
456
|
+
'type': str,
|
|
457
|
+
'help': 'path to a file or a directory'
|
|
458
|
+
} ]
|
|
459
|
+
args = build_command_parser(configs, doc)
|
|
460
|
+
def _walk_dir(root_path):
|
|
461
|
+
buffer = []
|
|
462
|
+
for root, dirs, files in os.walk(root_path):
|
|
463
|
+
for f in files:
|
|
464
|
+
if f.endswith('.xml'):
|
|
465
|
+
buffer.append(os.path.join(root_path, root, f))
|
|
466
|
+
return buffer
|
|
467
|
+
path = args.path
|
|
468
|
+
# in case the path passed is relative
|
|
469
|
+
if not os.path.isabs(path):
|
|
470
|
+
path = os.path.realpath(os.path.join(os.getcwd(), path))
|
|
471
|
+
files = _walk_dir(path)
|
|
472
|
+
for f in files:
|
|
473
|
+
|
|
474
|
+
fname, ext = os.path.splitext(os.path.basename(f))
|
|
475
|
+
fname = fname.split('_')[0]
|
|
476
|
+
dest_path = os.path.join(os.path.dirname(f), fname[-4:-2], fname[-2:], os.path.basename(f))
|
|
477
|
+
os.makedirs(os.path.dirname(dest_path), exist_ok=True)
|
|
478
|
+
shutil.move(f, dest_path)
|
|
479
|
+
print(dest_path)
|
|
448
480
|
|
|
449
481
|
def run():
|
|
450
482
|
doc = """
|
|
@@ -514,7 +546,7 @@ def run():
|
|
|
514
546
|
buffer = []
|
|
515
547
|
for root, dirs, files in os.walk(root_path):
|
|
516
548
|
for f in files:
|
|
517
|
-
if f.endswith('.xml.gz')
|
|
549
|
+
if f.endswith('.xml.gz') or f.endswith('.xml'):
|
|
518
550
|
buffer.append(os.path.join(root_path, root, f))
|
|
519
551
|
if len(buffer) == nb:
|
|
520
552
|
return buffer
|
|
@@ -595,9 +627,10 @@ def run():
|
|
|
595
627
|
import json
|
|
596
628
|
for rest in results:
|
|
597
629
|
st13 = json.loads(rest['out'])['st13']
|
|
598
|
-
appnumber = json.loads(rest['out'])
|
|
630
|
+
appnumber = json.loads(rest['out']).get('applicationNumber')
|
|
631
|
+
registration_number = json.loads(rest['out']).get('registrationNumber')
|
|
599
632
|
if st13 in st13s:
|
|
600
|
-
print(st13, appnumber, l2[l1.index(st13)])
|
|
633
|
+
print(st13, appnumber, registration_number, l2[l1.index(st13)])
|
|
601
634
|
else:
|
|
602
635
|
l1.append(st13)
|
|
603
636
|
l2.append(appnumber)
|
{wipo_gbd_transformation-1.1.51.dist-info → wipo_gbd_transformation-1.1.53.dist-info}/METADATA
RENAMED
|
@@ -1,23 +1,20 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: wipo-gbd-transformation
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.53
|
|
4
4
|
Summary: GBD XML ETL package
|
|
5
5
|
Home-page: https://github.com/GBD-Wipo/xmlE
|
|
6
6
|
Author: WIPO GDB team
|
|
7
7
|
Author-email: gbd@wipo.int
|
|
8
|
-
License: UNKNOWN
|
|
9
8
|
Keywords: gbdtransformation
|
|
10
|
-
Platform: UNKNOWN
|
|
11
9
|
Classifier: Programming Language :: Python :: 3.6
|
|
10
|
+
License-File: LICENSE.md
|
|
12
11
|
Requires-Dist: boto3
|
|
13
|
-
Requires-Dist: jinja2
|
|
12
|
+
Requires-Dist: jinja2 ==2.11.2
|
|
14
13
|
Requires-Dist: xmltodict
|
|
15
14
|
Requires-Dist: dicttoxml
|
|
16
15
|
Requires-Dist: PyYAML
|
|
17
16
|
Requires-Dist: munch
|
|
18
17
|
Requires-Dist: tabulate
|
|
19
|
-
Requires-Dist: markupsafe
|
|
18
|
+
Requires-Dist: markupsafe ==2.0.1
|
|
20
19
|
|
|
21
20
|
GBD XML ETL package
|
|
22
|
-
|
|
23
|
-
|
{wipo_gbd_transformation-1.1.51.dist-info → wipo_gbd_transformation-1.1.53.dist-info}/RECORD
RENAMED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
gbdtransformation/.DS_Store,sha256=0P5iuLZ7zgY5l38MNfo5m8w3yfR_rIdKFFFjvnF0ws4,6148
|
|
1
2
|
gbdtransformation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
gbdtransformation/execs.py,sha256=
|
|
3
|
+
gbdtransformation/execs.py,sha256=H1TxxWGWzZsEUfqgp0Pg7olmWeFMKDonTRyxEc2Lgb8,25120
|
|
3
4
|
gbdtransformation/parser.py,sha256=m6b1J0kJEaEDc0I8HKxzzN2nsQWKFfLlQqS3nT02kb4,7074
|
|
4
5
|
gbdtransformation/renders.py,sha256=RmvQgugnG2ErvDxP4I9yovW67gEZNpOd59nrzEYfQPI,4555
|
|
5
6
|
gbdtransformation/brands/__init__.py,sha256=abDdinNkilR-qYg4dhVxP_e1-ZixCzVuHGxbFt710TE,1605
|
|
@@ -169,7 +170,7 @@ gbdtransformation/brands/ipas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
|
169
170
|
gbdtransformation/brands/ipas/filters.py,sha256=cjHa9yciQfUWC2XehqcluwLODbajU8yZvleATpKI6-4,6561
|
|
170
171
|
gbdtransformation/brands/ipas/template.yml,sha256=TMD1OLKdxGN9XLc6gjTIArM0bXjT0hwQbam4PTvxAzE,7402
|
|
171
172
|
gbdtransformation/brands/istm/__init__.py,sha256=Odl0eAIHwvFrNHxJCqM-9Yht1kcLcXJSZDpJbSLXeq0,192
|
|
172
|
-
gbdtransformation/brands/istm/filters.py,sha256=
|
|
173
|
+
gbdtransformation/brands/istm/filters.py,sha256=KlqBtHmwxU8e4Y58elGqEMnzNf97ceqTS-FpyB1WgA0,2833
|
|
173
174
|
gbdtransformation/brands/istm/schema,sha256=iMcsysU2fLG9lQYr3rwsbt3U0oC8xrIrB0-XitQGsMg,789
|
|
174
175
|
gbdtransformation/brands/istm/template.yml,sha256=Eo7aW87OOyLeHpR7TwEejapKYFFevMfW7S26yH2IaL0,3660
|
|
175
176
|
gbdtransformation/brands/ittm/__init__.py,sha256=x7MEG0cRT7jOj2U9I4stffawL5ZOFcH3iywiNSsdXEQ,132
|
|
@@ -221,6 +222,11 @@ gbdtransformation/brands/latm/schema,sha256=TFrF4FR76cytcbtQkDWxtF74I0tCPRDIvWRF
|
|
|
221
222
|
gbdtransformation/brands/latm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
222
223
|
gbdtransformation/brands/latm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
223
224
|
gbdtransformation/brands/latm/tests/test.xml.gz,sha256=hbMV5-OrRcv_03kIb2CRtxO0fqL9ki3CWWMA_DUxkD0,1147
|
|
225
|
+
gbdtransformation/brands/lktm/__init__.py,sha256=baI_xh_xUTxJ7igEYW1BUqlUw-Mkn4EJaXzCjedbBP0,79
|
|
226
|
+
gbdtransformation/brands/lktm/filters.py,sha256=dWLFZMmiJDfAt29Pbyh7iHjS_LMGmVM-IBEoc6_LkoY,2483
|
|
227
|
+
gbdtransformation/brands/lktm/schema,sha256=AP0MxQyD0hY4APRh8nxitlxMqJYJB4AaaTJ8y20-XBA,3283
|
|
228
|
+
gbdtransformation/brands/lktm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
229
|
+
gbdtransformation/brands/lktm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
224
230
|
gbdtransformation/brands/matm/__init__.py,sha256=UHmbQDIPDdApISBKfO9tKOX6LgUQ_Ib-IVMR5kCVMTY,86
|
|
225
231
|
gbdtransformation/brands/matm/filters.py,sha256=N_XQKimSlJc2DEcf4cbC45KTTUeul9KYYyLpGww_Juw,1326
|
|
226
232
|
gbdtransformation/brands/matm/schema,sha256=3PV7cG_7K5NbfISVHZMheuv5GN7dYfshiN23g-3cLcE,679
|
|
@@ -304,6 +310,11 @@ gbdtransformation/brands/phtm/__init__.py,sha256=UHmbQDIPDdApISBKfO9tKOX6LgUQ_Ib
|
|
|
304
310
|
gbdtransformation/brands/phtm/filters.py,sha256=yNBSktkG4dBGe_E8vxT6N4k6kwkM1A2llNLD4lHVh88,3599
|
|
305
311
|
gbdtransformation/brands/phtm/schema,sha256=3JOKHUfK0jSo0NBlDmeGFAKqfYdMJOrIPBIoNUMrVFI,808
|
|
306
312
|
gbdtransformation/brands/phtm/template.yml,sha256=U5th90SpXjspWTPuimqftd8vZfJ3tT90mIud5n7Zv8w,2820
|
|
313
|
+
gbdtransformation/brands/qatm/__init__.py,sha256=NBdOewZ1F_3eErahjyR-up8bjz1FSxwEiPSJfDw6GxY,79
|
|
314
|
+
gbdtransformation/brands/qatm/filters.py,sha256=lMPVBX2ProdUtg5LcuQAmlInoGCo1-JZemHrvE1lNvw,2330
|
|
315
|
+
gbdtransformation/brands/qatm/schema,sha256=AP0MxQyD0hY4APRh8nxitlxMqJYJB4AaaTJ8y20-XBA,3283
|
|
316
|
+
gbdtransformation/brands/qatm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
317
|
+
gbdtransformation/brands/qatm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
307
318
|
gbdtransformation/brands/rotm/__init__.py,sha256=UHmbQDIPDdApISBKfO9tKOX6LgUQ_Ib-IVMR5kCVMTY,86
|
|
308
319
|
gbdtransformation/brands/rotm/filters.py,sha256=Oa9H3K9iVKV_931C5vneuGV8hRFkWqKxOCetX0cOiME,2597
|
|
309
320
|
gbdtransformation/brands/rotm/schema,sha256=tfKmy1EAbBSHBODWEWnmxGQ7shVL1MV_g2JJFaH4buc,3498
|
|
@@ -389,7 +400,7 @@ gbdtransformation/brands/uytm/filters.py,sha256=i7SBMVTF70OERVdsS3Dfv19S3-9kyxE-
|
|
|
389
400
|
gbdtransformation/brands/uytm/schema,sha256=uMd1E_XRVQ_wHVrGq5fqFH6Fyg8cWx2DTQbVvH8tmmA,3730
|
|
390
401
|
gbdtransformation/brands/uytm/template.yml,sha256=fLZVKwC0j6fAxv-kpngeSnGOZMiK-T_wWdxFmd4L7pc,5497
|
|
391
402
|
gbdtransformation/brands/vntm/__init__.py,sha256=po50MWZ7H_x6jhT_C83-HvsjAE0J8IQpubzvXwTqmgI,225
|
|
392
|
-
gbdtransformation/brands/vntm/filters.py,sha256=
|
|
403
|
+
gbdtransformation/brands/vntm/filters.py,sha256=R6qF0UGIHL3njBEXH5P_GI9I8Fyg1__HhTAvRwu92rw,2441
|
|
393
404
|
gbdtransformation/brands/vntm/schema,sha256=TFrF4FR76cytcbtQkDWxtF74I0tCPRDIvWRFeqaJt6Q,3242
|
|
394
405
|
gbdtransformation/brands/vntm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
395
406
|
gbdtransformation/brands/vntm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -456,90 +467,94 @@ gbdtransformation/commons/emrp/__init__.py,sha256=LPq1qlU4nPGFyKPsgKWZG9K2mV4vWR
|
|
|
456
467
|
gbdtransformation/commons/emrp/filters.py,sha256=CA7FRKxuhP1QVlB7hh6uIf7EVBXr1MkJ_NKAaP7nqBo,68
|
|
457
468
|
gbdtransformation/commons/emrp/template.yml,sha256=Zor0npqNLZfY9oFs7Ts-bwbsLlUJGmZMHi1cb35MQmI,1402
|
|
458
469
|
gbdtransformation/designs/__init__.py,sha256=0zM_Nw5d8cwxBsFq0NMxBRb21DiOUqgCb020CGJN_KY,242
|
|
459
|
-
gbdtransformation/designs/filters.py,sha256=
|
|
470
|
+
gbdtransformation/designs/filters.py,sha256=cFXAVGynjZjd5IX1CisEAfVhNLCMIZiu3xz1RUsX3zw,2584
|
|
460
471
|
gbdtransformation/designs/alid/__init__.py,sha256=U1i1Qng034s7l_2No1yJKbHvUSnMWl66ZLSinKMMS7Y,95
|
|
461
|
-
gbdtransformation/designs/alid/filters.py,sha256=
|
|
472
|
+
gbdtransformation/designs/alid/filters.py,sha256=bwE0eg3BCaoUlWT_U1BSvBIbKz1a2n0JTENJW-ZfD5s,1947
|
|
462
473
|
gbdtransformation/designs/alid/schema,sha256=4W6aAkQ4JFTzOEVGYRWlWpsieoIIWoVqhLLnGzI3MjM,3502
|
|
463
474
|
gbdtransformation/designs/alid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
475
|
+
gbdtransformation/designs/bgid/__init__.py,sha256=jLrJQ5nccnWItNDV4kmUdq-uo6ms500KnR9qchLry8Q,84
|
|
476
|
+
gbdtransformation/designs/bgid/filters.py,sha256=wDLEZ8GAtVl4UBVwtW59siB44tiSmJOCMDS-aKUEd7s,2897
|
|
477
|
+
gbdtransformation/designs/bgid/schema,sha256=WOLoyQZCQ_PYjsXODbJSE3vEPppqwm85K7thf5T7lKQ,3667
|
|
478
|
+
gbdtransformation/designs/bgid/template.yml,sha256=dAnTluo-554scf_FxYalZ7xHj8RfGfBIhFZurXAenZY,5860
|
|
464
479
|
gbdtransformation/designs/bnid/__init__.py,sha256=Y_X59eGmIFOkwWF4SkaxTQ3z7QAfIHGoL1VHM8ywbHo,87
|
|
465
|
-
gbdtransformation/designs/bnid/filters.py,sha256=
|
|
480
|
+
gbdtransformation/designs/bnid/filters.py,sha256=vx4rZhlOIYzpYfMvm8baxuKfQZWml8dW58oN_I_NT6M,1644
|
|
466
481
|
gbdtransformation/designs/bnid/schema,sha256=BSzYzhQUcv3cLI-rDSLEEcIAOxMSIgQClvfKDVVTyak,3145
|
|
467
482
|
gbdtransformation/designs/bnid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
468
483
|
gbdtransformation/designs/bwid/__init__.py,sha256=pzix_Sy_6D6uWvMeWsirR9n3jTWzrl5BjxD40JNRheQ,140
|
|
469
|
-
gbdtransformation/designs/bwid/filters.py,sha256=
|
|
484
|
+
gbdtransformation/designs/bwid/filters.py,sha256=sLDmJwIKas7UsshOnKqJw3v-6dV6GB0WQahWp3udEMk,1763
|
|
470
485
|
gbdtransformation/designs/bwid/schema,sha256=1r9dWYV65h_PoGOkhC9NcCM0n-co-_s3tipPbkA0_GU,4042
|
|
471
486
|
gbdtransformation/designs/bwid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
472
487
|
gbdtransformation/designs/crid/__init__.py,sha256=8EoYA1bg1glF-0Gsfnwy4EInbekNZLa_FFMYZXFW_VQ,88
|
|
473
|
-
gbdtransformation/designs/crid/filters.py,sha256=
|
|
488
|
+
gbdtransformation/designs/crid/filters.py,sha256=32KRvV_mWQGFd4asa069FoZ-thn1pSkpeClkq8RfX00,1707
|
|
474
489
|
gbdtransformation/designs/crid/schema,sha256=MsviyYOn0iDtlxZEPr-u4jfqBdkPb03OJNxDspjlz-I,3696
|
|
475
490
|
gbdtransformation/designs/crid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
476
491
|
gbdtransformation/designs/cuid/__init__.py,sha256=uc087GF8rJ3uwm5VRxZ1mqxxhz0MNQQWgjzKilsu080,93
|
|
477
|
-
gbdtransformation/designs/cuid/filters.py,sha256=
|
|
492
|
+
gbdtransformation/designs/cuid/filters.py,sha256=bo2qJ6ttq_qFzkedjsDMN5Mc0Cw_gOko7a8RD9H2z6k,1489
|
|
478
493
|
gbdtransformation/designs/cuid/schema,sha256=JZ_ZYSgaFIKAkT8DBc_jlUkCzrS5dNWU9GBTBsPA9-8,3857
|
|
479
494
|
gbdtransformation/designs/cuid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
480
495
|
gbdtransformation/designs/egid/__init__.py,sha256=7mgvG_Z35b9eE-1bOsv_0adbFhtjMA3oo7_RhUTVt-4,87
|
|
481
|
-
gbdtransformation/designs/egid/filters.py,sha256=
|
|
496
|
+
gbdtransformation/designs/egid/filters.py,sha256=mhaTzZbNjcDeRLQLiTGL3kJFJkPcu-fft_NdVPm2UIE,1635
|
|
482
497
|
gbdtransformation/designs/egid/schema,sha256=wYLahygD8w60xS0Cjiu7To2GmB1spODG3dx0GFawNr0,3202
|
|
483
498
|
gbdtransformation/designs/egid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
484
499
|
gbdtransformation/designs/idid/__init__.py,sha256=VkDcskZjJF6RN5GGF7CebAwffmoHA7bQyUFhwbgvHZ0,98
|
|
485
|
-
gbdtransformation/designs/idid/filters.py,sha256=
|
|
500
|
+
gbdtransformation/designs/idid/filters.py,sha256=Yr9uv_fnfnurUPILKV6aK5pW6NwrsHBtPR7Lv_hS8pk,1797
|
|
486
501
|
gbdtransformation/designs/idid/schema,sha256=wNCAOWV0H7CPQ1tnrZ4ClX5SnwgyGv3gBAiKz2h2Ijw,4092
|
|
487
502
|
gbdtransformation/designs/idid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
488
503
|
gbdtransformation/designs/ipas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
489
|
-
gbdtransformation/designs/ipas/filters.py,sha256=
|
|
490
|
-
gbdtransformation/designs/ipas/template.yml,sha256=
|
|
504
|
+
gbdtransformation/designs/ipas/filters.py,sha256=VnvR4Bj-W7ZlA9tBZLWlt-Lw7Vk53qCZwo5FmN1F01M,6711
|
|
505
|
+
gbdtransformation/designs/ipas/template.yml,sha256=86XUmvJr6598TWQ8T-nLCKY-V6MOxfbwCPHIfcrzrSs,8108
|
|
491
506
|
gbdtransformation/designs/joid/__init__.py,sha256=n3o4q-5ZgLxMOaw_ILCd-oXyQlRegHD29V308bWdhG4,129
|
|
492
|
-
gbdtransformation/designs/joid/filters.py,sha256=
|
|
507
|
+
gbdtransformation/designs/joid/filters.py,sha256=cXpeljaZMDYdRoz3B7IAN-F4RleOFa5ZcuROmlmXQCs,1649
|
|
493
508
|
gbdtransformation/designs/joid/schema,sha256=F2yRVbByiFoLfftr5-N8CU38-cMSeYE5yQPm3_fYw-A,3830
|
|
494
509
|
gbdtransformation/designs/joid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
495
510
|
gbdtransformation/designs/keid/__init__.py,sha256=3VPO0He0ST4Np7iu-GbganBs5nLpfAeEMS85mP0ZZQc,124
|
|
496
|
-
gbdtransformation/designs/keid/filters.py,sha256=
|
|
511
|
+
gbdtransformation/designs/keid/filters.py,sha256=6B7iiR7d2dRnynK3gBkxi2Mzrz0izmWNR3NhSHwOoPQ,1658
|
|
497
512
|
gbdtransformation/designs/keid/schema,sha256=PXmZWv6H9lE2Dyh6wd_ZfZdd73umFioDRkBX-u5n_i8,3914
|
|
498
513
|
gbdtransformation/designs/keid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
499
514
|
gbdtransformation/designs/khid/__init__.py,sha256=s1v2N-zkWufdXw6D644D_vnJL1vAsFZ9TSBZNCmvUnU,87
|
|
500
|
-
gbdtransformation/designs/khid/filters.py,sha256=
|
|
515
|
+
gbdtransformation/designs/khid/filters.py,sha256=kJ5-blSb1QRU8D032BgaTyQ9Jgq65_gsyElRUwQnXcQ,1646
|
|
501
516
|
gbdtransformation/designs/khid/schema,sha256=UADl14SH_-sRCY7D8Enf6FeH2al_1kTLWCVneCRtDJI,3968
|
|
502
517
|
gbdtransformation/designs/khid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
503
518
|
gbdtransformation/designs/laid/__init__.py,sha256=YM1Q1PEfEWCnqpX7UQMmwGGs4VVoly176mTcTIZtNKE,81
|
|
504
|
-
gbdtransformation/designs/laid/filters.py,sha256=
|
|
519
|
+
gbdtransformation/designs/laid/filters.py,sha256=AvcSiq7LPPF6M3dRg2XxU0D6D7QbYnTLK8KJM5NYfGk,1631
|
|
505
520
|
gbdtransformation/designs/laid/schema,sha256=jkMwyOhGR1tGpFL6Ovi55wpSpbHylu3UnGpLO-ynt_o,3684
|
|
506
521
|
gbdtransformation/designs/laid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
507
522
|
gbdtransformation/designs/mnid/__init__.py,sha256=iEM2BvQvr2FzismA4mcZu2thpz6Ak5PcFO81vxdxk68,125
|
|
508
|
-
gbdtransformation/designs/mnid/filters.py,sha256=
|
|
523
|
+
gbdtransformation/designs/mnid/filters.py,sha256=vZN5eWpoWdNLfTignhJYF7QFXdFbTpG73u_NrIpfXKs,1645
|
|
509
524
|
gbdtransformation/designs/mnid/schema,sha256=cL6vjXJsQNmJ-acerybZAQ2SP5xBR9FksDXRcwgJ8b8,3858
|
|
510
525
|
gbdtransformation/designs/mnid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
511
526
|
gbdtransformation/designs/myid/__init__.py,sha256=r7ki64LZqptIipzExxfEa-UFp_FsB3zyUi8UnmKydYo,122
|
|
512
|
-
gbdtransformation/designs/myid/filters.py,sha256=
|
|
527
|
+
gbdtransformation/designs/myid/filters.py,sha256=xSbAg6ShiR1GGra5C_9_t0QcBftUGQ1al1rITv5Opjs,1580
|
|
513
528
|
gbdtransformation/designs/myid/schema,sha256=3SYG1Pu6xMhTmasJYFgJlKr1Im8UUZKX9EjUHKUfY80,3785
|
|
514
529
|
gbdtransformation/designs/myid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
515
530
|
gbdtransformation/designs/phid/__init__.py,sha256=c2hjuzYjA2-okkbnfOTA4vCphr8CJX-aYFRWg_zwAJg,134
|
|
516
|
-
gbdtransformation/designs/phid/filters.py,sha256=
|
|
531
|
+
gbdtransformation/designs/phid/filters.py,sha256=EZoG-h7ZV6k8P_PSkEEReYZRWCIJrRW6FIrBIZwEmW0,1921
|
|
517
532
|
gbdtransformation/designs/phid/schema,sha256=UxP-sj3ONGQqW-2qSsLAVXpQU8ymPHZFm0AENKhrhOM,3754
|
|
518
533
|
gbdtransformation/designs/phid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
519
534
|
gbdtransformation/designs/sgid/__init__.py,sha256=_KSJwFiKqhUT1aLXgaPgr6fojPLqfmvPdkh_xpihPds,128
|
|
520
|
-
gbdtransformation/designs/sgid/filters.py,sha256=
|
|
535
|
+
gbdtransformation/designs/sgid/filters.py,sha256=8Wb9AKU6W9GLODH4D2gUxjGaTVlEoH3Z2aet57NCHXE,1765
|
|
521
536
|
gbdtransformation/designs/sgid/schema,sha256=0bNKAL6VKaiRu3TK3SZ9V-t6vqoN86pkiU3PfE2kr40,4501
|
|
522
537
|
gbdtransformation/designs/sgid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
523
538
|
gbdtransformation/designs/thid/__init__.py,sha256=hXLZOUHc4HHuGC-WOMKZDCJlgrHL6-EYjdyLW2GWDME,56
|
|
524
|
-
gbdtransformation/designs/thid/filters.py,sha256=
|
|
539
|
+
gbdtransformation/designs/thid/filters.py,sha256=txW_UeiUfKmFrIp9_Zxpf0Y3nMOL5gcj3aXhBBk4mis,1744
|
|
525
540
|
gbdtransformation/designs/thid/schema,sha256=nNz7rstNxaulw6nMr-65w7yVF0tgkDYob08gtB1i3WE,3912
|
|
526
541
|
gbdtransformation/designs/thid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
527
542
|
gbdtransformation/designs/tnid/__init__.py,sha256=um-XfQWW58iiIqrWdXTMbY1UQ9tG7h9e5kTehhb9vvc,93
|
|
528
|
-
gbdtransformation/designs/tnid/filters.py,sha256=
|
|
543
|
+
gbdtransformation/designs/tnid/filters.py,sha256=3pc0--Cnx9pIkUaAhkA7sdfP8I407V02e2lXPFgxJxg,1808
|
|
529
544
|
gbdtransformation/designs/tnid/schema,sha256=kkDxno6zbBk6qqxZs8JE9Y6lcpn9JJ8qE5885PhI7GE,3829
|
|
530
545
|
gbdtransformation/designs/tnid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
531
546
|
gbdtransformation/designs/vnid/__init__.py,sha256=JaV6-HeRUl11JwL9V7_uc8gBmSRj0pnKyAXftATfS4c,86
|
|
532
|
-
gbdtransformation/designs/vnid/filters.py,sha256=
|
|
547
|
+
gbdtransformation/designs/vnid/filters.py,sha256=HlZJp1Zb1zU37tZO-xBe0Kt-TlCT0nlBS4QbpK6Nq7Y,1701
|
|
533
548
|
gbdtransformation/designs/vnid/schema,sha256=HxkKmaih8mUTYZst9aIbEgv_uXhqS6PQp3C4S7utz18,3830
|
|
534
549
|
gbdtransformation/designs/vnid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
535
550
|
gbdtransformation/designs/woid/__init__.py,sha256=Cdy9Ki01mAvufymKb9QSLwfFggaoerOenq6BxhPu500,66
|
|
536
|
-
gbdtransformation/designs/woid/filters.py,sha256=
|
|
551
|
+
gbdtransformation/designs/woid/filters.py,sha256=q9ZbgRRuNYMV5sMo_PA0NYz9Ez9xQQxP5dTO7kdaV8g,16569
|
|
537
552
|
gbdtransformation/designs/woid/schema,sha256=DoJKgqrbOIPrrSJ7WcJM6aQpDqG34yD0MT7bsxauNpM,19967
|
|
538
|
-
gbdtransformation/designs/woid/template.yml,sha256=
|
|
553
|
+
gbdtransformation/designs/woid/template.yml,sha256=Pk4mvnUSjOEh1t0sbC1MPywk2g6Cvl_oBTB5SKuESkQ,19318
|
|
539
554
|
gbdtransformation/designs/xxid/__init__.py,sha256=Cdy9Ki01mAvufymKb9QSLwfFggaoerOenq6BxhPu500,66
|
|
540
555
|
gbdtransformation/designs/xxid/filters.py,sha256=YCaQ6yH2LINwCQvbPHDhnORQyWglbswLlSOY6ur3KXQ,1874
|
|
541
556
|
gbdtransformation/designs/xxid/schema,sha256=KaFhfG6P5SE787wkAuME6hhpcg7vLnSb9x1rW_0EL3M,163
|
|
542
|
-
gbdtransformation/designs/xxid/template.yml,sha256=
|
|
557
|
+
gbdtransformation/designs/xxid/template.yml,sha256=6NgprAqO8xaXEGX0G5z6CHbGmH49q3KAsV7UYpw3Cto,4745
|
|
543
558
|
gbdtransformation/utilities/ISOCountryCodeType-V2006.xsd,sha256=T-QCdih6hFG7Tj_YlL7R0OyEmdAh1_NUDK_sMhVy4CI,41465
|
|
544
559
|
gbdtransformation/utilities/ISOCurrencyCodeType-V2001.xsd,sha256=FC0I3EPmeLfXeRGV25i7t5G8KXLHnX5m-pKHOYWNmSw,28868
|
|
545
560
|
gbdtransformation/utilities/ISOLanguageCodeType-V2002.xsd,sha256=ouRSwAnkVtjGLwZ50LXOW3V21lIWVlPw3yr9CcsVPRU,22147
|
|
@@ -552,9 +567,9 @@ gbdtransformation/utilities/st66.xsd,sha256=co8aFN3a5TpudllRttWmfLeiZu8ulNipfeXm
|
|
|
552
567
|
schemas/ShazamConfig.py,sha256=D67os5B11C41h_WZ7kk54Ss0Kk7tHh8W0d_1c_aX-lY,1191
|
|
553
568
|
schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
554
569
|
schemas/schema_extractor.py,sha256=3-ImtnI777f6b3VA0A_w-NoXdlGz5VZMzK6MnPdQQAY,10294
|
|
555
|
-
wipo_gbd_transformation-1.1.
|
|
556
|
-
wipo_gbd_transformation-1.1.
|
|
557
|
-
wipo_gbd_transformation-1.1.
|
|
558
|
-
wipo_gbd_transformation-1.1.
|
|
559
|
-
wipo_gbd_transformation-1.1.
|
|
560
|
-
wipo_gbd_transformation-1.1.
|
|
570
|
+
wipo_gbd_transformation-1.1.53.dist-info/LICENSE.md,sha256=6r2dL13EwZqSt2ellLbJRFTA-6ECIDOer4YthCfkac0,35654
|
|
571
|
+
wipo_gbd_transformation-1.1.53.dist-info/METADATA,sha256=5NvYhVs0g7orM4YRHqZlCDVakI3Ul-2eoc_aJdM6q9Y,517
|
|
572
|
+
wipo_gbd_transformation-1.1.53.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
573
|
+
wipo_gbd_transformation-1.1.53.dist-info/entry_points.txt,sha256=NFLtlP3mPHUi-hEoUcz4CXa7vcpP8bbwd18HS4arbEk,223
|
|
574
|
+
wipo_gbd_transformation-1.1.53.dist-info/top_level.txt,sha256=oU1j-JNLga18Fd-EV6Xl9wM8zxYoNVEzb7P8MDhTPJg,26
|
|
575
|
+
wipo_gbd_transformation-1.1.53.dist-info/RECORD,,
|
{wipo_gbd_transformation-1.1.51.dist-info → wipo_gbd_transformation-1.1.53.dist-info}/LICENSE.md
RENAMED
|
File without changes
|
{wipo_gbd_transformation-1.1.51.dist-info → wipo_gbd_transformation-1.1.53.dist-info}/top_level.txt
RENAMED
|
File without changes
|