wipo-gbd-transformation 1.1.35__py3-none-any.whl → 1.1.37__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/brtm/filters.py +66 -3
- gbdtransformation/brands/brtm/template.yml +21 -0
- gbdtransformation/brands/emtm/filters.py +1 -1
- gbdtransformation/brands/estm/filters.py +4 -3
- gbdtransformation/brands/estm/template.yml +1 -1
- gbdtransformation/brands/filters.py +7 -2
- gbdtransformation/brands/gbtm/filters.py +10 -3
- gbdtransformation/brands/gbtm/template.yml +3 -3
- gbdtransformation/brands/ipas/filters.py +10 -1
- gbdtransformation/brands/ipas/template.yml +9 -2
- gbdtransformation/brands/mctm/filters.py +1 -1
- gbdtransformation/brands/rotm/__init__.py +3 -0
- gbdtransformation/brands/rotm/filters.py +82 -0
- gbdtransformation/brands/rotm/schema +128 -0
- gbdtransformation/brands/rotm/template.yml +121 -0
- gbdtransformation/brands/rutm/__init__.py +1 -0
- gbdtransformation/brands/rutm/filters.py +26 -23
- gbdtransformation/brands/rutm/template.yml +38 -33
- gbdtransformation/brands/sgtm/filters.py +1 -1
- gbdtransformation/brands/sttm/__init__.py +16 -0
- gbdtransformation/brands/sttm/filters.py +70 -0
- gbdtransformation/brands/sttm/schema +83 -0
- gbdtransformation/brands/sttm/template.yml +1 -0
- gbdtransformation/brands/sttm/tests/__init__.py +0 -0
- gbdtransformation/brands/ustm/filters.py +1 -3
- gbdtransformation/brands/vntm/__init__.py +2 -1
- gbdtransformation/brands/vntm/filters.py +14 -6
- gbdtransformation/brands/xxtm/__init__.py +2 -0
- gbdtransformation/brands/xxtm/filters.py +60 -0
- gbdtransformation/brands/xxtm/schema +4 -0
- gbdtransformation/brands/xxtm/template.yml +183 -0
- gbdtransformation/common/filters.py +9 -3
- gbdtransformation/designs/alid/__init__.py +5 -0
- gbdtransformation/designs/alid/filters.py +56 -0
- gbdtransformation/designs/alid/schema +89 -0
- gbdtransformation/designs/alid/template.yml +1 -0
- gbdtransformation/designs/bnid/__init__.py +5 -0
- gbdtransformation/designs/bnid/filters.py +57 -0
- gbdtransformation/designs/bnid/schema +80 -0
- gbdtransformation/designs/bnid/template.yml +1 -0
- gbdtransformation/designs/ipas/__init__.py +0 -0
- gbdtransformation/designs/ipas/filters.py +99 -0
- gbdtransformation/designs/ipas/template.yml +163 -0
- gbdtransformation/designs/xxid/__init__.py +2 -0
- gbdtransformation/designs/xxid/filters.py +60 -0
- gbdtransformation/designs/xxid/schema +4 -0
- gbdtransformation/designs/xxid/template.yml +146 -0
- {wipo_gbd_transformation-1.1.35.dist-info → wipo_gbd_transformation-1.1.37.dist-info}/METADATA +1 -4
- {wipo_gbd_transformation-1.1.35.dist-info → wipo_gbd_transformation-1.1.37.dist-info}/RECORD +54 -25
- {wipo_gbd_transformation-1.1.35.dist-info → wipo_gbd_transformation-1.1.37.dist-info}/WHEEL +1 -1
- {wipo_gbd_transformation-1.1.35.dist-info → wipo_gbd_transformation-1.1.37.dist-info}/entry_points.txt +0 -1
- {wipo_gbd_transformation-1.1.35.dist-info → wipo_gbd_transformation-1.1.37.dist-info}/top_level.txt +0 -0
- {wipo_gbd_transformation-1.1.35.dist-info → wipo_gbd_transformation-1.1.37.dist-info}/LICENSE.md +0 -0
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
{% from 'navigation.tmpl' import match %}
|
|
2
|
+
|
|
3
|
+
{% call(header) match('DesignTransactionBody.TransactionContentDetails', Transaction) %}
|
|
4
|
+
|
|
5
|
+
{% call(design) match('TransactionData.DesignApplicationDetails.DesignApplication', header) %}
|
|
6
|
+
{% set design_count = design | get_designs_count(header) %}
|
|
7
|
+
{% set design_pos = design | get_designs_pos(header) %}
|
|
8
|
+
{% set kind = design | translate_kind(header) %}
|
|
9
|
+
type: 'Open'
|
|
10
|
+
designGrouping: 'Multiple'
|
|
11
|
+
designsCount: {{ design_count }}
|
|
12
|
+
designPos: {{ design_pos }}
|
|
13
|
+
kind: {{kind}}
|
|
14
|
+
registrationOfficeCode: {{ design.RegistrationOfficeCode }}
|
|
15
|
+
designatedCountries:
|
|
16
|
+
- {{ design.RegistrationOfficeCode }}
|
|
17
|
+
|
|
18
|
+
reference:
|
|
19
|
+
{% if header | is_international %}
|
|
20
|
+
office: WO
|
|
21
|
+
registration:
|
|
22
|
+
- number: {{ design.DesignApplicationNumber | get_ir_refnum }}
|
|
23
|
+
{% endif %}
|
|
24
|
+
{% if not kind == 'Industrial Design' %}
|
|
25
|
+
office: {{ design.RegistrationNumber }}
|
|
26
|
+
{% endif %}
|
|
27
|
+
|
|
28
|
+
{% set idstatus = design.DesignDetails.Design | translate_status %}
|
|
29
|
+
{% set appdate = design.DesignApplicationDate | get_appdate(design.DesignApplicationNumber) %}
|
|
30
|
+
|
|
31
|
+
st13: {{ design.DesignApplicationNumber | st13(design.RegistrationOfficeCode, design_pos, appdate=appdate) }}
|
|
32
|
+
|
|
33
|
+
applicationNumber: {{ design.DesignApplicationNumber }}
|
|
34
|
+
applicationDate: {{ design.DesignApplicationDate }}
|
|
35
|
+
registrationNumber: {{ design.DesignDetails.Design | get_registration_nb(idstatus) | remove_trailing('-') }}
|
|
36
|
+
registrationDate: {{ design.DesignDetails.Design | get_registration_date(idstatus) }}
|
|
37
|
+
publicationDate: {{ (design.DesignDetails.Design.PublicationDetails.Publication | last).PublicationDate }}
|
|
38
|
+
expiryDate: {{ design.DesignDetails.Design | get_expiry_date(idstatus) }}
|
|
39
|
+
|
|
40
|
+
applicationLanguageCode: {{ design.DesignApplicationLanguageCode }}
|
|
41
|
+
|
|
42
|
+
officeStatus: {{ design.DesignDetails.Design.DesignCurrentStatusCode | parseStatus }}
|
|
43
|
+
gbdStatus: {{ idstatus }}
|
|
44
|
+
statusDate: {{ design.DesignDetails.Design.DesignCurrentStatusDate }}
|
|
45
|
+
|
|
46
|
+
designDescription:
|
|
47
|
+
- languageCode: {{ design.DesignDetails.Design.DesignDescription | guess_language(design.DesignApplicationLanguageCode) }}
|
|
48
|
+
text: {{ design.DesignDetails.Design.DesignDescription }}
|
|
49
|
+
|
|
50
|
+
designImageDetails:
|
|
51
|
+
{% call(sheet) match('DesignRepresentationSheetDetails.DesignRepresentationSheet', design.DesignDetails.Design) %}
|
|
52
|
+
{% call(img) match('RepresentationSheetFilename',sheet) %}
|
|
53
|
+
- name: {{ img }}
|
|
54
|
+
{% endcall %}
|
|
55
|
+
{% endcall %}
|
|
56
|
+
applicants:
|
|
57
|
+
{% call(applicant) match('ApplicantDetails.Applicant', design.DesignDetails.Design) %}
|
|
58
|
+
{% call(details) match('ApplicantAddressBook.FormattedNameAddress.Name.FreeFormatName', applicant) %}
|
|
59
|
+
- identifier: {{ details.ApplicantIdentifier }}
|
|
60
|
+
fullName:
|
|
61
|
+
{% call(nameline) match('FreeFormatNameDetails.FreeFormatNameLine', details) %}
|
|
62
|
+
{% if nameline | has_value %}
|
|
63
|
+
- text: {{ nameline }}
|
|
64
|
+
languageCode: {{ nameline.__value | guess_language(nameline._languageCode, design.DesignApplicationLanguageCode) }}
|
|
65
|
+
{% endif %}
|
|
66
|
+
{% endcall %}
|
|
67
|
+
{% endcall %}
|
|
68
|
+
{% call(address) match('ApplicantAddressBook.FormattedNameAddress.Address', applicant) %}
|
|
69
|
+
fullAddress:
|
|
70
|
+
{% call(adrline) match('FreeFormatAddress.FreeFormatAddressLine', address) %}
|
|
71
|
+
{% if adrline | has_value %}
|
|
72
|
+
- text: {{ adrline }}
|
|
73
|
+
languageCode: {{ adrline | guess_language(adrline._languageCode, design.DesignApplicationLanguageCode) }}
|
|
74
|
+
{% endif %}
|
|
75
|
+
{% endcall %}
|
|
76
|
+
countryCode: {{ address.AddressCountryCode | remove_trailing('-', '.') | remove_numerics }}
|
|
77
|
+
{% endcall %}
|
|
78
|
+
{% endcall %}
|
|
79
|
+
|
|
80
|
+
representatives:
|
|
81
|
+
{% call(representative) match('RepresentativeDetails.Representative', design.DesignDetails.Design) %}
|
|
82
|
+
{% call(details) match('RepresentativeAddressBook.FormattedNameAddress.Name.FreeFormatName', representative) %}
|
|
83
|
+
- identifier: {{ details.RepresentativeIdentifier }}
|
|
84
|
+
fullName:
|
|
85
|
+
{% call(nameline) match('FreeFormatNameDetails.FreeFormatNameLine', details) %}
|
|
86
|
+
- text: {{ nameline }}
|
|
87
|
+
languageCode: {{ nameline.__value | guess_language(nameline._languageCode, design.DesignApplicationLanguageCode) }}
|
|
88
|
+
{% endcall %}
|
|
89
|
+
{% endcall %}
|
|
90
|
+
{% call(address) match('RepresentativeAddressBook.FormattedNameAddress.Address', representative) %}
|
|
91
|
+
fullAddress:
|
|
92
|
+
{% call(adrline) match('FreeFormatAddress.FreeFormatAddressLine', address) %}
|
|
93
|
+
{% if not adrline == '-' %}
|
|
94
|
+
- text: {{ adrline }}
|
|
95
|
+
languageCode: {{ adrline | guess_language(adrline._languageCode, design.DesignApplicationLanguageCode) }}
|
|
96
|
+
{% endif %}
|
|
97
|
+
{% endcall %}
|
|
98
|
+
countryCode: {{ address.AddressCountryCode | remove_trailing('-', '.') | remove_numerics }}
|
|
99
|
+
{% endcall %}
|
|
100
|
+
{% endcall %}
|
|
101
|
+
|
|
102
|
+
designer:
|
|
103
|
+
{% call(designer) match('DesignerDetails.Designer', design.DesignDetails.Design) %}
|
|
104
|
+
{% call(details) match('DesignerAddressBook.FormattedNameAddress.Name.FreeFormatName', designer) %}
|
|
105
|
+
- identifier: {{ details.DesignerIdentifier }}
|
|
106
|
+
fullName:
|
|
107
|
+
{% call(nameline) match('FreeFormatNameDetails.FreeFormatNameLine', details) %}
|
|
108
|
+
- text: {{ nameline }}
|
|
109
|
+
languageCode: {{ nameline.__value | guess_language(nameline._languageCode, design.DesignApplicationLanguageCode) }}
|
|
110
|
+
{% endcall %}
|
|
111
|
+
{% endcall %}
|
|
112
|
+
{% call(address) match('DesignerAddressBook.FormattedNameAddress.Address', designer) %}
|
|
113
|
+
fullAddress:
|
|
114
|
+
{% call(adrline) match('FreeFormatAddress.FreeFormatAddressLine', address) %}
|
|
115
|
+
{% if not adrline == '-' %}
|
|
116
|
+
- text: {{ adrline }}
|
|
117
|
+
languageCode: {{ adrline | guess_language(adrline._languageCode, design.DesignApplicationLanguageCode) }}
|
|
118
|
+
{% endif %}
|
|
119
|
+
{% endcall %}
|
|
120
|
+
countryCode: {{ address.AddressCountryCode | remove_trailing('-', '.') | remove_numerics }}
|
|
121
|
+
{% endcall %}
|
|
122
|
+
{% endcall %}
|
|
123
|
+
|
|
124
|
+
productIndicationClasses:
|
|
125
|
+
{% call(indicationProducts) match('IndicationProductDetails.IndicationProduct', design.DesignDetails.Design) %}
|
|
126
|
+
- kind: {{ indicationProducts.ClassificationKindCode}}
|
|
127
|
+
version: {{ indicationProducts.ClassificationVersion}}
|
|
128
|
+
classes:
|
|
129
|
+
{% call(code) match('ClassDescriptionDetails.ClassDescription', indicationProducts) %}
|
|
130
|
+
- code: {{ code.ClassNumber }}
|
|
131
|
+
description: {{ code.ProductDescription}}
|
|
132
|
+
{% endcall %}
|
|
133
|
+
{% endcall %}
|
|
134
|
+
|
|
135
|
+
productIndication:
|
|
136
|
+
{% call(indic) match('DesignTitle', design.DesignDetails.Design) %}
|
|
137
|
+
- languageCode: {{ indic | guess_language(indic._languageCode, design.DesignApplicationLanguageCode) }}
|
|
138
|
+
text: {{ indic }}
|
|
139
|
+
{% endcall %}
|
|
140
|
+
|
|
141
|
+
noveltyStatement:
|
|
142
|
+
{% call(indic) match('NoveltyStatement', design.DesignDetails.Design) %}
|
|
143
|
+
- languageCode: {{ indic | remove_trailing('-', '.') | guess_language(indic._languageCode, design.DesignApplicationLanguageCode) }}
|
|
144
|
+
text: {{ indic | remove_trailing('-', '.') }}
|
|
145
|
+
{% endcall %}
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
priorities:
|
|
149
|
+
{% call(priority) match('PriorityDetails.Priority', design.DesignDetails.Design) %}
|
|
150
|
+
- countryCode: {{ priority.PriorityCountryCode }}
|
|
151
|
+
number: {{ priority.PriorityNumber }}
|
|
152
|
+
date: {{ priority.PriorityDate }}
|
|
153
|
+
{% endcall %}
|
|
154
|
+
|
|
155
|
+
publications:
|
|
156
|
+
{% call(pub) match('PublicationDetails.Publication', design.DesignDetails.Design) %}
|
|
157
|
+
- identifier: {{ pub.PublicationIdentifier}}
|
|
158
|
+
date: {{ pub.PublicationDate}}
|
|
159
|
+
section:
|
|
160
|
+
{% endcall %}
|
|
161
|
+
|
|
162
|
+
{% endcall %}
|
|
163
|
+
{% endcall %}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# standard gbd definitions
|
|
2
|
+
from gbdtransformation.brands import kinds as std_kinds
|
|
3
|
+
from gbdtransformation.brands import status as std_status
|
|
4
|
+
from gbdtransformation.brands import features as std_features
|
|
5
|
+
from gbdtransformation.brands import events as std_events
|
|
6
|
+
|
|
7
|
+
# namespaces defined in XML and to be ignored in procecssing
|
|
8
|
+
ignore_namespace = []
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
# -------------------------------------------------------------
|
|
12
|
+
# data translation helpers:
|
|
13
|
+
# translate values from office interpretation to gbd equivalent
|
|
14
|
+
# -------------------------------------------------------------
|
|
15
|
+
|
|
16
|
+
def translate_kind(kind):
|
|
17
|
+
"""translation of the kind of trademark to a
|
|
18
|
+
multivalue gbd interpretation"""
|
|
19
|
+
|
|
20
|
+
# out-of-the-box match
|
|
21
|
+
if kind.capitalize() in std_kinds:
|
|
22
|
+
return [kind.capitalize()]
|
|
23
|
+
|
|
24
|
+
# __insert here__ : translation logic
|
|
25
|
+
|
|
26
|
+
# raise Exception to recognize unmapped values
|
|
27
|
+
raise Exception('kind "%s" is not mapped.' % kind)
|
|
28
|
+
|
|
29
|
+
def translate_status(status):
|
|
30
|
+
"""translation of mark status"""
|
|
31
|
+
# a required data from office. if not present and no way to guess,
|
|
32
|
+
# return Unknown
|
|
33
|
+
if not status: return 'Unknown'
|
|
34
|
+
|
|
35
|
+
# out-of-the-box match
|
|
36
|
+
if status.capitalize() in std_status:
|
|
37
|
+
return status.capitalize()
|
|
38
|
+
|
|
39
|
+
# __insert here__ : translation logic
|
|
40
|
+
|
|
41
|
+
# raise Exception to recognize unmapped values
|
|
42
|
+
raise Exception('Status "%s" unmapped' % status)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
def translate_feature(feature):
|
|
46
|
+
"""translation of mark feature"""
|
|
47
|
+
|
|
48
|
+
# needed information from office
|
|
49
|
+
# if office cannot provide information, then agree on a way to guess (uatm)
|
|
50
|
+
if not feature: return 'Undefined'
|
|
51
|
+
|
|
52
|
+
# out-of-the-box match
|
|
53
|
+
if feature.capitalize() in std_features:
|
|
54
|
+
return feature.capitalize()
|
|
55
|
+
|
|
56
|
+
# __insert here__ : translation logic
|
|
57
|
+
|
|
58
|
+
# raise Exception to recognize unmapped values
|
|
59
|
+
raise Exception('Feature "%s" unmapped' % feature)
|
|
60
|
+
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
{% from 'navigation.tmpl' import match %}
|
|
2
|
+
|
|
3
|
+
design:
|
|
4
|
+
type: # (OPEN|SEALED) -INID 27 - SealedDepositIndicator
|
|
5
|
+
designGrouping: # SINGLE|MULTIPLE
|
|
6
|
+
kind: # DESIGN|DESING PATENT(US)
|
|
7
|
+
registrationOfficeCode:
|
|
8
|
+
designatedCountries:
|
|
9
|
+
- str (CountryCode)
|
|
10
|
+
# rarely passed
|
|
11
|
+
filingPlace:
|
|
12
|
+
|
|
13
|
+
# some collections indicate that the application
|
|
14
|
+
# originates from international filing and provide IR number
|
|
15
|
+
applicationRefNumber:
|
|
16
|
+
applicationRefOrigin:
|
|
17
|
+
|
|
18
|
+
# can be deduced from appnum given office cc and (optional) appdate
|
|
19
|
+
st13: # {{ Design.ApplicationNumber | st13('XX', appdate=... }}
|
|
20
|
+
|
|
21
|
+
applicationNumber:
|
|
22
|
+
# dates can be converted if not matching expected format
|
|
23
|
+
applicationDate: # ex: {{ Design.ApplicationDate | convertdate('%Y%m%d') }}
|
|
24
|
+
|
|
25
|
+
# some collections have registration number
|
|
26
|
+
# equals application number when registered
|
|
27
|
+
registrationNumber:
|
|
28
|
+
# some collections we can guess registration date
|
|
29
|
+
# from event list
|
|
30
|
+
registrationDate:
|
|
31
|
+
publicationDate:
|
|
32
|
+
effectiveDate:
|
|
33
|
+
defermentPeriod:
|
|
34
|
+
expiryDate:
|
|
35
|
+
|
|
36
|
+
applicationLanguageCode:
|
|
37
|
+
# rarely passed
|
|
38
|
+
secondLanguageCode:
|
|
39
|
+
|
|
40
|
+
# status as is in the document
|
|
41
|
+
officeStatus:
|
|
42
|
+
# status as translated to gbdFormat
|
|
43
|
+
gbdStatus: # (Ended|Expired|Pending|Registered|Unknown)
|
|
44
|
+
# can also be the date of the last event in markevents if given
|
|
45
|
+
statusDate:
|
|
46
|
+
|
|
47
|
+
designDescription: #Init 57
|
|
48
|
+
- languageCode:
|
|
49
|
+
text:
|
|
50
|
+
|
|
51
|
+
productDisclaimer:
|
|
52
|
+
- languageCode:
|
|
53
|
+
text:
|
|
54
|
+
|
|
55
|
+
designImageDetails:
|
|
56
|
+
- name:
|
|
57
|
+
legend:
|
|
58
|
+
- string
|
|
59
|
+
|
|
60
|
+
applicants:
|
|
61
|
+
- identifier:
|
|
62
|
+
kind:
|
|
63
|
+
fullName:
|
|
64
|
+
- languageCode:
|
|
65
|
+
text:
|
|
66
|
+
fullAddress:
|
|
67
|
+
- languageCode:
|
|
68
|
+
text:
|
|
69
|
+
countryCode: # sometimes, country name is provided instead
|
|
70
|
+
|
|
71
|
+
representatives:
|
|
72
|
+
- identifier:
|
|
73
|
+
kind:
|
|
74
|
+
fullName:
|
|
75
|
+
- languageCode:
|
|
76
|
+
text:
|
|
77
|
+
fullAddress:
|
|
78
|
+
- languageCode:
|
|
79
|
+
text:
|
|
80
|
+
countryCode:
|
|
81
|
+
|
|
82
|
+
designer:
|
|
83
|
+
- identifier:
|
|
84
|
+
kind:
|
|
85
|
+
fullName:
|
|
86
|
+
- languageCode:
|
|
87
|
+
text:
|
|
88
|
+
fullAddress:
|
|
89
|
+
- languageCode:
|
|
90
|
+
text:
|
|
91
|
+
countryCode:
|
|
92
|
+
|
|
93
|
+
correspondence:
|
|
94
|
+
fullName:
|
|
95
|
+
- languageCode:
|
|
96
|
+
text:
|
|
97
|
+
fullAddress:
|
|
98
|
+
- languageCode:
|
|
99
|
+
text:
|
|
100
|
+
countryCode:
|
|
101
|
+
|
|
102
|
+
productIndicationClasses:
|
|
103
|
+
- kind: Locarno/US/CA/Etc
|
|
104
|
+
version: #mostly
|
|
105
|
+
code:
|
|
106
|
+
|
|
107
|
+
productIndication:
|
|
108
|
+
- languageCode:
|
|
109
|
+
text:
|
|
110
|
+
|
|
111
|
+
records:
|
|
112
|
+
- identifier:
|
|
113
|
+
officeKind:
|
|
114
|
+
gbdKind:
|
|
115
|
+
officeStatus:
|
|
116
|
+
gbdStatus:
|
|
117
|
+
statusDate:
|
|
118
|
+
|
|
119
|
+
exhibition:
|
|
120
|
+
- date:
|
|
121
|
+
name:
|
|
122
|
+
location:
|
|
123
|
+
|
|
124
|
+
priorities:
|
|
125
|
+
- countryCode:
|
|
126
|
+
number:
|
|
127
|
+
date:
|
|
128
|
+
comment:
|
|
129
|
+
|
|
130
|
+
publications:
|
|
131
|
+
- identifier:
|
|
132
|
+
date:
|
|
133
|
+
section:
|
|
134
|
+
|
|
135
|
+
events:
|
|
136
|
+
- officeKind:
|
|
137
|
+
gbdKind: # Filed, Withdrawn, Rejected, Unknown
|
|
138
|
+
date:
|
|
139
|
+
# here goes extra information that is office specific and that is pertinent for us to retain.
|
|
140
|
+
extra:
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
|
{wipo_gbd_transformation-1.1.35.dist-info → wipo_gbd_transformation-1.1.37.dist-info}/METADATA
RENAMED
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: wipo-gbd-transformation
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.37
|
|
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
|
|
12
10
|
License-File: LICENSE.md
|
|
13
11
|
Requires-Dist: boto3
|
|
@@ -19,4 +17,3 @@ Requires-Dist: munch
|
|
|
19
17
|
Requires-Dist: tabulate
|
|
20
18
|
|
|
21
19
|
GBD XML ETL package
|
|
22
|
-
|
{wipo_gbd_transformation-1.1.35.dist-info → wipo_gbd_transformation-1.1.37.dist-info}/RECORD
RENAMED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
gbdtransformation/.DS_Store,sha256=0P5iuLZ7zgY5l38MNfo5m8w3yfR_rIdKFFFjvnF0ws4,6148
|
|
1
2
|
gbdtransformation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
3
|
gbdtransformation/execs.py,sha256=fyviq3kFk4SwhTloLU2dJVA_qVUpPol-x4ZKg2kZRrI,23513
|
|
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
|
|
6
|
-
gbdtransformation/brands/filters.py,sha256=
|
|
7
|
+
gbdtransformation/brands/filters.py,sha256=uF5U_gg7Xsk1wgDrFKzThnUO5xqQ2X5WFMufeJC6xN8,3675
|
|
7
8
|
gbdtransformation/brands/aetm/__init__.py,sha256=iRGjYvJCPaI3nnVc6ayO1g7j-fZ3yHrG1Wfb996UKMA,73
|
|
8
9
|
gbdtransformation/brands/aetm/filters.py,sha256=mmhPwr6X-gC-jgc272e_9sxpNttfaUUORG7cDxgUO24,2490
|
|
9
10
|
gbdtransformation/brands/aetm/schema,sha256=AP0MxQyD0hY4APRh8nxitlxMqJYJB4AaaTJ8y20-XBA,3283
|
|
@@ -38,9 +39,9 @@ gbdtransformation/brands/bntm/schema,sha256=AP0MxQyD0hY4APRh8nxitlxMqJYJB4AaaTJ8
|
|
|
38
39
|
gbdtransformation/brands/bntm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
39
40
|
gbdtransformation/brands/bntm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
41
|
gbdtransformation/brands/brtm/__init__.py,sha256=4i_g7tbu8MmPJccRZCkqJES_bzwGUY59SxTlZT_e3Xs,37
|
|
41
|
-
gbdtransformation/brands/brtm/filters.py,sha256=
|
|
42
|
+
gbdtransformation/brands/brtm/filters.py,sha256=uoBeiqYeSiekPjOa405dVCUdMT06IaWqtrCKbXxJ-ug,5569
|
|
42
43
|
gbdtransformation/brands/brtm/schema,sha256=TFrF4FR76cytcbtQkDWxtF74I0tCPRDIvWRFeqaJt6Q,3242
|
|
43
|
-
gbdtransformation/brands/brtm/template.yml,sha256=
|
|
44
|
+
gbdtransformation/brands/brtm/template.yml,sha256=U3dMrcxS-meJthPQow_R1MAVH1DYdJ4AyJSAR6s9LJQ,952
|
|
44
45
|
gbdtransformation/brands/brtm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
46
|
gbdtransformation/brands/bttm/__init__.py,sha256=cCkwMJ9sn4nPbrt8gZzcLovRJzV9uLi2L-6dU_KsIzg,229
|
|
46
47
|
gbdtransformation/brands/bttm/filters.py,sha256=3OFCcjpjkIQ_GbYeGcwTpc-qWBZLUybaUzr4e4s-eEI,2326
|
|
@@ -98,21 +99,21 @@ gbdtransformation/brands/egtm/schema,sha256=AP0MxQyD0hY4APRh8nxitlxMqJYJB4AaaTJ8
|
|
|
98
99
|
gbdtransformation/brands/egtm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
99
100
|
gbdtransformation/brands/egtm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
100
101
|
gbdtransformation/brands/emtm/__init__.py,sha256=9J9MpkcIR-7PWVjbzvT-ey9F400wxdlRAQF5ZiX8FX8,91
|
|
101
|
-
gbdtransformation/brands/emtm/filters.py,sha256=
|
|
102
|
+
gbdtransformation/brands/emtm/filters.py,sha256=xHkvSRnkkpUxLzUcLGNfVbdReLcB9vhz0ybT0oCdeP0,3250
|
|
102
103
|
gbdtransformation/brands/emtm/schema,sha256=CCZ2HtmgidPqBs9byleAC6ksQ6jFgclmVewH3Vnex8w,9643
|
|
103
104
|
gbdtransformation/brands/emtm/template.yml,sha256=Ffwu7G1L8Qevcw9U0O5QkWOw-5yruO0aD6kyXxwG7Oo,7135
|
|
104
105
|
gbdtransformation/brands/estm/__init__.py,sha256=UHmbQDIPDdApISBKfO9tKOX6LgUQ_Ib-IVMR5kCVMTY,86
|
|
105
|
-
gbdtransformation/brands/estm/filters.py,sha256=
|
|
106
|
+
gbdtransformation/brands/estm/filters.py,sha256=GzhXr2dnPmZ4l71q0a3ulNTJgdpLQI6qcQcNEK8E5Co,3553
|
|
106
107
|
gbdtransformation/brands/estm/schema,sha256=y7ZeQPuHez-DbBs1wnQjkyPvQ3hQ2uX5eNdrimCnFh4,3334
|
|
107
|
-
gbdtransformation/brands/estm/template.yml,sha256=
|
|
108
|
+
gbdtransformation/brands/estm/template.yml,sha256=bQaXUSoU_SGuCBk5hnOxrlLcS13ZPexykXIFK_ZI9XY,5733
|
|
108
109
|
gbdtransformation/brands/frtm/__init__.py,sha256=yqzC7OagUR0RLui3pHPWo5WxLyksznHcpI-NEEgnlYE,36
|
|
109
110
|
gbdtransformation/brands/frtm/filters.py,sha256=Umf_QBzgTXbT5CkTXwPvfx-WIVDkThTXv0FqkRrbXxI,5662
|
|
110
111
|
gbdtransformation/brands/frtm/schema,sha256=j-VU6tu7B0vecH0bL5PATK_1iHuHgJ34w3Bk82PviKc,8885
|
|
111
112
|
gbdtransformation/brands/frtm/template.yml,sha256=Uc02stDUwfQJn-HrBeY2Ji7qNysehBzN3NPBdNpzftY,7826
|
|
112
113
|
gbdtransformation/brands/gbtm/__init__.py,sha256=UHmbQDIPDdApISBKfO9tKOX6LgUQ_Ib-IVMR5kCVMTY,86
|
|
113
|
-
gbdtransformation/brands/gbtm/filters.py,sha256=
|
|
114
|
+
gbdtransformation/brands/gbtm/filters.py,sha256=L4aJu12uDIeXAXeVjiW0AJ6z01pGNN9uqWy3dKxXp88,4317
|
|
114
115
|
gbdtransformation/brands/gbtm/schema,sha256=fwTT16clc_vF6eckSyyXhfDkCxbN4MMAhLOjlyRjfZ0,9395
|
|
115
|
-
gbdtransformation/brands/gbtm/template.yml,sha256=
|
|
116
|
+
gbdtransformation/brands/gbtm/template.yml,sha256=zMAD3FwmjtXyB-wJz4O2BqIJPwVoFeSf5zaugdihleg,6679
|
|
116
117
|
gbdtransformation/brands/getm/__init__.py,sha256=UHmbQDIPDdApISBKfO9tKOX6LgUQ_Ib-IVMR5kCVMTY,86
|
|
117
118
|
gbdtransformation/brands/getm/filters.py,sha256=9nJtX8WO83KcxePdDr_eVNXL2iBLMCNJ2YNKNqMte-k,2136
|
|
118
119
|
gbdtransformation/brands/getm/schema,sha256=jLZa_r9emAhmOMOODUicsgLbzX2vhbWb9MdxR2S6i-Q,7665
|
|
@@ -156,8 +157,8 @@ gbdtransformation/brands/intm/filters.py,sha256=uIwop7-MBhWgIU4WzGAH4jjzVUu8Y1Fq
|
|
|
156
157
|
gbdtransformation/brands/intm/schema,sha256=FD9pdh6E4XKAHuHM2xUlKpOs9jGU-JdvhZowPi9YJOg,4546
|
|
157
158
|
gbdtransformation/brands/intm/template.yml,sha256=dbNgDgiDjzHz1kXObb0_J_ZIDcTE7z_J6T9wlZGUmzs,5427
|
|
158
159
|
gbdtransformation/brands/ipas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
159
|
-
gbdtransformation/brands/ipas/filters.py,sha256=
|
|
160
|
-
gbdtransformation/brands/ipas/template.yml,sha256=
|
|
160
|
+
gbdtransformation/brands/ipas/filters.py,sha256=tByRtM6IZhMJ2IuOBr4cdmHhrhpxRh6X8EBNxNTtaCg,6220
|
|
161
|
+
gbdtransformation/brands/ipas/template.yml,sha256=TMD1OLKdxGN9XLc6gjTIArM0bXjT0hwQbam4PTvxAzE,7402
|
|
161
162
|
gbdtransformation/brands/istm/__init__.py,sha256=Odl0eAIHwvFrNHxJCqM-9Yht1kcLcXJSZDpJbSLXeq0,192
|
|
162
163
|
gbdtransformation/brands/istm/filters.py,sha256=t5FgtEkD3mcxQgiNzXWlHSl0LikxNX0x1Cuz2V0_99Y,2145
|
|
163
164
|
gbdtransformation/brands/istm/schema,sha256=iMcsysU2fLG9lQYr3rwsbt3U0oC8xrIrB0-XitQGsMg,789
|
|
@@ -216,7 +217,7 @@ gbdtransformation/brands/matm/filters.py,sha256=N_XQKimSlJc2DEcf4cbC45KTTUeul9KY
|
|
|
216
217
|
gbdtransformation/brands/matm/schema,sha256=3PV7cG_7K5NbfISVHZMheuv5GN7dYfshiN23g-3cLcE,679
|
|
217
218
|
gbdtransformation/brands/matm/template.yml,sha256=5MchwbFUkFhg_JSq-6NNAssc8T1jz_XXEXegjaC-5sg,2569
|
|
218
219
|
gbdtransformation/brands/mctm/__init__.py,sha256=UHmbQDIPDdApISBKfO9tKOX6LgUQ_Ib-IVMR5kCVMTY,86
|
|
219
|
-
gbdtransformation/brands/mctm/filters.py,sha256=
|
|
220
|
+
gbdtransformation/brands/mctm/filters.py,sha256=8Pp6veUsfiqHGuKSNmkIkW9Nc_SYJQSJW0oz1drxeS0,2158
|
|
220
221
|
gbdtransformation/brands/mctm/schema,sha256=tfKmy1EAbBSHBODWEWnmxGQ7shVL1MV_g2JJFaH4buc,3498
|
|
221
222
|
gbdtransformation/brands/mctm/template.yml,sha256=oOtT7iRGrpsDQrmPdgxxLSeA7frRZyLFcA1kL74Peos,5180
|
|
222
223
|
gbdtransformation/brands/mdtm/__init__.py,sha256=UHmbQDIPDdApISBKfO9tKOX6LgUQ_Ib-IVMR5kCVMTY,86
|
|
@@ -289,15 +290,19 @@ gbdtransformation/brands/phtm/__init__.py,sha256=UHmbQDIPDdApISBKfO9tKOX6LgUQ_Ib
|
|
|
289
290
|
gbdtransformation/brands/phtm/filters.py,sha256=yNBSktkG4dBGe_E8vxT6N4k6kwkM1A2llNLD4lHVh88,3599
|
|
290
291
|
gbdtransformation/brands/phtm/schema,sha256=3JOKHUfK0jSo0NBlDmeGFAKqfYdMJOrIPBIoNUMrVFI,808
|
|
291
292
|
gbdtransformation/brands/phtm/template.yml,sha256=U5th90SpXjspWTPuimqftd8vZfJ3tT90mIud5n7Zv8w,2820
|
|
293
|
+
gbdtransformation/brands/rotm/__init__.py,sha256=UHmbQDIPDdApISBKfO9tKOX6LgUQ_Ib-IVMR5kCVMTY,86
|
|
294
|
+
gbdtransformation/brands/rotm/filters.py,sha256=Oa9H3K9iVKV_931C5vneuGV8hRFkWqKxOCetX0cOiME,2597
|
|
295
|
+
gbdtransformation/brands/rotm/schema,sha256=tfKmy1EAbBSHBODWEWnmxGQ7shVL1MV_g2JJFaH4buc,3498
|
|
296
|
+
gbdtransformation/brands/rotm/template.yml,sha256=4noWM8wpq_mNNYFBX5bO4G_pUABE2wSQx05GgJU1yd0,5040
|
|
292
297
|
gbdtransformation/brands/rstm/__init__.py,sha256=wnZhVdIu7ILTQVfZGaFUopKFAVujiATDPApjOc0TPRY,78
|
|
293
298
|
gbdtransformation/brands/rstm/filters.py,sha256=YCQzIg8chXUNTxodQTTToWPApZVHRFL8cKbTO8XKC90,2808
|
|
294
299
|
gbdtransformation/brands/rstm/schema,sha256=TFrF4FR76cytcbtQkDWxtF74I0tCPRDIvWRFeqaJt6Q,3242
|
|
295
300
|
gbdtransformation/brands/rstm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
296
301
|
gbdtransformation/brands/rstm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
297
|
-
gbdtransformation/brands/rutm/__init__.py,sha256=
|
|
298
|
-
gbdtransformation/brands/rutm/filters.py,sha256=
|
|
302
|
+
gbdtransformation/brands/rutm/__init__.py,sha256=3k7ag8YOrirNJHgIDJ_GHs6vEyLw9fUWN8mjLVmgou0,215
|
|
303
|
+
gbdtransformation/brands/rutm/filters.py,sha256=T0MkCXP56OeLF_iHsPfncNOvSBVzILJ6dwfej5O6e7U,2938
|
|
299
304
|
gbdtransformation/brands/rutm/schema,sha256=u4Xwm50hewm6AuS2aDSaeNEp8OGVwBX1DMjj8OX7dU8,3521
|
|
300
|
-
gbdtransformation/brands/rutm/template.yml,sha256=
|
|
305
|
+
gbdtransformation/brands/rutm/template.yml,sha256=1K1ZnK7FBJPR8NOWpOlSCyhiMNaAF9BWqwFRp1I4C5Y,4254
|
|
301
306
|
gbdtransformation/brands/sdtm/__init__.py,sha256=Qgy8B1FmSnuyYKLhuKP1YBvzo4MvTpPtNO1uTTgwdiA,83
|
|
302
307
|
gbdtransformation/brands/sdtm/filters.py,sha256=FK8HavnChqVq0Tyyasn42uvdb8vDAq6DZjgsOnDuOlo,1597
|
|
303
308
|
gbdtransformation/brands/sdtm/schema,sha256=TFrF4FR76cytcbtQkDWxtF74I0tCPRDIvWRFeqaJt6Q,3242
|
|
@@ -305,7 +310,7 @@ gbdtransformation/brands/sdtm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62Y
|
|
|
305
310
|
gbdtransformation/brands/sdtm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
306
311
|
gbdtransformation/brands/sdtm/tests/test.xml.gz,sha256=t3u3Pb2I_vgHU9AZJhw_FTOqoVglBLUcrL3S8HgbRsk,857
|
|
307
312
|
gbdtransformation/brands/sgtm/__init__.py,sha256=WH-be3N3qbu8Qd7bd_Nz12qxU2UzaNGfR8hgu584_XY,377
|
|
308
|
-
gbdtransformation/brands/sgtm/filters.py,sha256=
|
|
313
|
+
gbdtransformation/brands/sgtm/filters.py,sha256=J519aUpMdnted4wR7zF9cMQeMvIi857Q0a2mWoE-qMU,6471
|
|
309
314
|
gbdtransformation/brands/sgtm/schema,sha256=ALI9vWmb7uoMBS0JABxaKzoX3xmiXpC_T_abgs5W09k,4140
|
|
310
315
|
gbdtransformation/brands/sgtm/template.article6ter.yml,sha256=xjxu53T6OHeLIDVJtAb4bEcvC2kE_eAabPYxhWJy30I,1282
|
|
311
316
|
gbdtransformation/brands/sgtm/template.r13.yml,sha256=2VwWbySE3wioV3sM5aX4nnaptYLIUM3CpbVQzBSRk34,1076
|
|
@@ -323,6 +328,11 @@ gbdtransformation/brands/solrjtm/template.yml,sha256=BsQ6kF6zL75-jiQf_oyd9-tK_nI
|
|
|
323
328
|
gbdtransformation/brands/st66tm/__init__.py,sha256=eo-VOjP-c_LVVX1MdULyED0rgL4XiK5JvliI48B6m94,15
|
|
324
329
|
gbdtransformation/brands/st66tm/filters.py,sha256=Q6l2f7sZZF4m5q7W-wtmDpuvL9qrJZUByG_-GDR8woo,1129
|
|
325
330
|
gbdtransformation/brands/st66tm/st66tm.tmpl,sha256=6ZgyUYNWBfTwzQMl8V937eXYOncLFD79Pn3I8axzXbA,10696
|
|
331
|
+
gbdtransformation/brands/sttm/__init__.py,sha256=Eavq2ionAAwwN-6nOyIebauQeae6eqku0y-RiBQyed4,362
|
|
332
|
+
gbdtransformation/brands/sttm/filters.py,sha256=qjlZsAMc77Fe6ZzxCMrhhHQ98zFrDSJtZfHRLhyCfTA,2090
|
|
333
|
+
gbdtransformation/brands/sttm/schema,sha256=Ak4UCFjcrPTlewCGqUEkXTBMGJ7x8jJo24hWzS3E9wE,3078
|
|
334
|
+
gbdtransformation/brands/sttm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
335
|
+
gbdtransformation/brands/sttm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
326
336
|
gbdtransformation/brands/sztm/__init__.py,sha256=pnNJrcvxi-MDzE5S8fztNElBlIV4u3ophSn6kL5b1Oc,389
|
|
327
337
|
gbdtransformation/brands/sztm/filters.py,sha256=aO4a60nkfqnXJ3hoCKOBq9nJF4-JBCaN-N65H7niqHc,2037
|
|
328
338
|
gbdtransformation/brands/sztm/schema,sha256=TFrF4FR76cytcbtQkDWxtF74I0tCPRDIvWRFeqaJt6Q,3242
|
|
@@ -352,15 +362,15 @@ gbdtransformation/brands/uatm/filters.py,sha256=Er8L7T5If-2s_oDZIhgIpUKBTHR9gN1Z
|
|
|
352
362
|
gbdtransformation/brands/uatm/schema,sha256=xyi3dhfyhzwFzeNA4vl5CZ_3FGNm6kcePHQt4Nd_qWM,4318
|
|
353
363
|
gbdtransformation/brands/uatm/template.yml,sha256=7E7Q9HUg8aFdiwzpYYqB0LIWbkG_zkRh8mGVpk7fL6k,5974
|
|
354
364
|
gbdtransformation/brands/ustm/__init__.py,sha256=kTDTnS4FtOCbvjeHCz0Tt2fXvlQ-I5ukdgvm8ECBW44,9679
|
|
355
|
-
gbdtransformation/brands/ustm/filters.py,sha256=
|
|
365
|
+
gbdtransformation/brands/ustm/filters.py,sha256=BOM3Cmo4KhhkCMcgHEEIpH-4J8RcYDFbLb2-pVEOCrs,5184
|
|
356
366
|
gbdtransformation/brands/ustm/schema,sha256=7vcbDMFy76nAxZ5dRjssbOhHNFOqVIlVldrNssBB1Mc,133581
|
|
357
367
|
gbdtransformation/brands/ustm/template.yml,sha256=UWkeH_sU0Bl_SaBIv-7xfgkTv_KZubgP5PZ1UzzQ0GM,4582
|
|
358
368
|
gbdtransformation/brands/uytm/__init__.py,sha256=UHmbQDIPDdApISBKfO9tKOX6LgUQ_Ib-IVMR5kCVMTY,86
|
|
359
369
|
gbdtransformation/brands/uytm/filters.py,sha256=i7SBMVTF70OERVdsS3Dfv19S3-9kyxE-y4aYA59YxA4,1976
|
|
360
370
|
gbdtransformation/brands/uytm/schema,sha256=uMd1E_XRVQ_wHVrGq5fqFH6Fyg8cWx2DTQbVvH8tmmA,3730
|
|
361
371
|
gbdtransformation/brands/uytm/template.yml,sha256=fLZVKwC0j6fAxv-kpngeSnGOZMiK-T_wWdxFmd4L7pc,5497
|
|
362
|
-
gbdtransformation/brands/vntm/__init__.py,sha256=
|
|
363
|
-
gbdtransformation/brands/vntm/filters.py,sha256=
|
|
372
|
+
gbdtransformation/brands/vntm/__init__.py,sha256=izLQm8Q1dG-XuVTfern9oE32O4GnZPl40BV62OeqdEI,103
|
|
373
|
+
gbdtransformation/brands/vntm/filters.py,sha256=nwhKkAG4cZWxTAUVymZjHCAhVqDngKezkc-6-liOAr4,2253
|
|
364
374
|
gbdtransformation/brands/vntm/schema,sha256=TFrF4FR76cytcbtQkDWxtF74I0tCPRDIvWRFeqaJt6Q,3242
|
|
365
375
|
gbdtransformation/brands/vntm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
366
376
|
gbdtransformation/brands/vntm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -393,6 +403,10 @@ gbdtransformation/brands/wstm/schema,sha256=TFrF4FR76cytcbtQkDWxtF74I0tCPRDIvWRF
|
|
|
393
403
|
gbdtransformation/brands/wstm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
394
404
|
gbdtransformation/brands/wstm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
395
405
|
gbdtransformation/brands/wstm/tests/test.xml.gz,sha256=UKm7LTvKaETUtHMKurFGqkqXO1Rh-4x1Jo2wyZOvwJ8,1284
|
|
406
|
+
gbdtransformation/brands/xxtm/__init__.py,sha256=Cdy9Ki01mAvufymKb9QSLwfFggaoerOenq6BxhPu500,66
|
|
407
|
+
gbdtransformation/brands/xxtm/filters.py,sha256=YCaQ6yH2LINwCQvbPHDhnORQyWglbswLlSOY6ur3KXQ,1874
|
|
408
|
+
gbdtransformation/brands/xxtm/schema,sha256=KaFhfG6P5SE787wkAuME6hhpcg7vLnSb9x1rW_0EL3M,163
|
|
409
|
+
gbdtransformation/brands/xxtm/template.yml,sha256=Iec6yINK8xiB1o5ZdPcqHpGjrCdeHo1tt7-XT99XFwg,4566
|
|
396
410
|
gbdtransformation/brands/xxxx/__init__.py,sha256=fricc3VHm4BwGRFKIIqB0t-NtP3tTVRrEYee_gWpiFo,172
|
|
397
411
|
gbdtransformation/brands/xxxx/filters.py,sha256=YCaQ6yH2LINwCQvbPHDhnORQyWglbswLlSOY6ur3KXQ,1874
|
|
398
412
|
gbdtransformation/brands/xxxx/schema,sha256=g_oWkd7k2e5fAQR1BdNkPSsIgP3dkTyc7esWo_UOHQA,163
|
|
@@ -408,7 +422,7 @@ gbdtransformation/brands/zwtm/schema,sha256=TFrF4FR76cytcbtQkDWxtF74I0tCPRDIvWRF
|
|
|
408
422
|
gbdtransformation/brands/zwtm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
409
423
|
gbdtransformation/brands/zwtm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
410
424
|
gbdtransformation/common/__init__.py,sha256=D8Pro2OHR868UAos_APlN1LhUPWMyIDXmPxP81n3HTw,12644
|
|
411
|
-
gbdtransformation/common/filters.py,sha256
|
|
425
|
+
gbdtransformation/common/filters.py,sha256=1V02GK5d1tPmUVEiwZXzvc0eu4nSB9qItusUWGkobsw,10522
|
|
412
426
|
gbdtransformation/common/navigation.tmpl,sha256=EZtsUnfh8B1V2WzHZjH3ZRZ9c9WpCVpWYsxLhGg9-fw,346
|
|
413
427
|
gbdtransformation/common/jpap/__init__.py,sha256=0zpD6c5XcsLqKBLRVgRUSImZrCQMgtYv9Na0lNV9CzU,16
|
|
414
428
|
gbdtransformation/common/jpap/filters.py,sha256=78tglb02rkiOvGn-DipzrBpkFsmYF8pKOIan6j99QWs,2209
|
|
@@ -428,6 +442,21 @@ gbdtransformation/commons/emrp/filters.py,sha256=CA7FRKxuhP1QVlB7hh6uIf7EVBXr1Mk
|
|
|
428
442
|
gbdtransformation/commons/emrp/template.yml,sha256=Zor0npqNLZfY9oFs7Ts-bwbsLlUJGmZMHi1cb35MQmI,1402
|
|
429
443
|
gbdtransformation/designs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
430
444
|
gbdtransformation/designs/filters.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
445
|
+
gbdtransformation/designs/alid/__init__.py,sha256=0kyp4Yt-Kg9aA3BN4CRURi7-5evAVd9VmPAufXzsxtI,95
|
|
446
|
+
gbdtransformation/designs/alid/filters.py,sha256=mWXLCYZr5davrmog1VAgtm7tDwwrRx6meOfpU2W0SiQ,1563
|
|
447
|
+
gbdtransformation/designs/alid/schema,sha256=4W6aAkQ4JFTzOEVGYRWlWpsieoIIWoVqhLLnGzI3MjM,3502
|
|
448
|
+
gbdtransformation/designs/alid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
449
|
+
gbdtransformation/designs/bnid/__init__.py,sha256=-vF4B_-fuOTvegI5lTsg81NN_vf-pOkBtC-KaEnGD1A,83
|
|
450
|
+
gbdtransformation/designs/bnid/filters.py,sha256=nCY1ANnzl0RiZYfyhL-fl_uUh8rMp2FF5f-O3l-zb7k,1562
|
|
451
|
+
gbdtransformation/designs/bnid/schema,sha256=BSzYzhQUcv3cLI-rDSLEEcIAOxMSIgQClvfKDVVTyak,3145
|
|
452
|
+
gbdtransformation/designs/bnid/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
453
|
+
gbdtransformation/designs/ipas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
454
|
+
gbdtransformation/designs/ipas/filters.py,sha256=TytwuAxktVKoeq04ffZT_BP6JZOiMe58eO7nkf5Cnzw,3618
|
|
455
|
+
gbdtransformation/designs/ipas/template.yml,sha256=lPfqFnc5cIkkVHE_4HaMZek31i1bNWBjKRIIc65i5hE,7396
|
|
456
|
+
gbdtransformation/designs/xxid/__init__.py,sha256=Cdy9Ki01mAvufymKb9QSLwfFggaoerOenq6BxhPu500,66
|
|
457
|
+
gbdtransformation/designs/xxid/filters.py,sha256=YCaQ6yH2LINwCQvbPHDhnORQyWglbswLlSOY6ur3KXQ,1874
|
|
458
|
+
gbdtransformation/designs/xxid/schema,sha256=KaFhfG6P5SE787wkAuME6hhpcg7vLnSb9x1rW_0EL3M,163
|
|
459
|
+
gbdtransformation/designs/xxid/template.yml,sha256=UojdcznkYxmZ_f7H2E5-SfqDsk7YBpuhPX9FiCahHOU,2890
|
|
431
460
|
gbdtransformation/utilities/ISOCountryCodeType-V2006.xsd,sha256=T-QCdih6hFG7Tj_YlL7R0OyEmdAh1_NUDK_sMhVy4CI,41465
|
|
432
461
|
gbdtransformation/utilities/ISOCurrencyCodeType-V2001.xsd,sha256=FC0I3EPmeLfXeRGV25i7t5G8KXLHnX5m-pKHOYWNmSw,28868
|
|
433
462
|
gbdtransformation/utilities/ISOLanguageCodeType-V2002.xsd,sha256=ouRSwAnkVtjGLwZ50LXOW3V21lIWVlPw3yr9CcsVPRU,22147
|
|
@@ -440,9 +469,9 @@ gbdtransformation/utilities/st66.xsd,sha256=co8aFN3a5TpudllRttWmfLeiZu8ulNipfeXm
|
|
|
440
469
|
schemas/ShazamConfig.py,sha256=D67os5B11C41h_WZ7kk54Ss0Kk7tHh8W0d_1c_aX-lY,1191
|
|
441
470
|
schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
442
471
|
schemas/schema_extractor.py,sha256=3-ImtnI777f6b3VA0A_w-NoXdlGz5VZMzK6MnPdQQAY,10294
|
|
443
|
-
wipo_gbd_transformation-1.1.
|
|
444
|
-
wipo_gbd_transformation-1.1.
|
|
445
|
-
wipo_gbd_transformation-1.1.
|
|
446
|
-
wipo_gbd_transformation-1.1.
|
|
447
|
-
wipo_gbd_transformation-1.1.
|
|
448
|
-
wipo_gbd_transformation-1.1.
|
|
472
|
+
wipo_gbd_transformation-1.1.37.dist-info/LICENSE.md,sha256=6r2dL13EwZqSt2ellLbJRFTA-6ECIDOer4YthCfkac0,35654
|
|
473
|
+
wipo_gbd_transformation-1.1.37.dist-info/METADATA,sha256=sJ1XCvIHNF54o3IGVSBvCw3Yr5S93dm-1o6URAc5GDs,485
|
|
474
|
+
wipo_gbd_transformation-1.1.37.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
475
|
+
wipo_gbd_transformation-1.1.37.dist-info/entry_points.txt,sha256=CiiRxivMelcgA7W_4rzY1fG-AGEarhpXQUlKYzKWsOI,165
|
|
476
|
+
wipo_gbd_transformation-1.1.37.dist-info/top_level.txt,sha256=oU1j-JNLga18Fd-EV6Xl9wM8zxYoNVEzb7P8MDhTPJg,26
|
|
477
|
+
wipo_gbd_transformation-1.1.37.dist-info/RECORD,,
|
{wipo_gbd_transformation-1.1.35.dist-info → wipo_gbd_transformation-1.1.37.dist-info}/top_level.txt
RENAMED
|
File without changes
|
{wipo_gbd_transformation-1.1.35.dist-info → wipo_gbd_transformation-1.1.37.dist-info}/LICENSE.md
RENAMED
|
File without changes
|