openepd 7.11.1__py3-none-any.whl → 7.13.0__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.
- openepd/__version__.py +1 -1
- openepd/model/specs/__init__.py +1 -2
- openepd/model/specs/range/__init__.py +34 -5
- openepd/model/specs/range/electrical.py +12 -1
- openepd/model/specs/range/non_construction.py +52 -0
- openepd/model/specs/range/other_materials.py +44 -2
- openepd/model/specs/singular/__init__.py +30 -5
- openepd/model/specs/singular/electrical.py +8 -1
- openepd/model/specs/singular/non_construction.py +52 -0
- openepd/model/specs/singular/other_materials.py +45 -2
- {openepd-7.11.1.dist-info → openepd-7.13.0.dist-info}/METADATA +1 -1
- {openepd-7.11.1.dist-info → openepd-7.13.0.dist-info}/RECORD +14 -14
- openepd/model/specs/range/other_electrical_equipment.py +0 -31
- openepd/model/specs/singular/other_electrical_equipment.py +0 -22
- {openepd-7.11.1.dist-info → openepd-7.13.0.dist-info}/LICENSE +0 -0
- {openepd-7.11.1.dist-info → openepd-7.13.0.dist-info}/WHEEL +0 -0
openepd/__version__.py
CHANGED
openepd/model/specs/__init__.py
CHANGED
|
@@ -61,7 +61,7 @@ from openepd.model.specs.singular.cladding import CladdingV1
|
|
|
61
61
|
from openepd.model.specs.singular.cmu import CMUV1
|
|
62
62
|
from openepd.model.specs.singular.concrete import ConcreteV1
|
|
63
63
|
from openepd.model.specs.singular.conveying_equipment import ConveyingEquipmentV1
|
|
64
|
-
from openepd.model.specs.singular.electrical import ElectricalV1
|
|
64
|
+
from openepd.model.specs.singular.electrical import ElectricalV1, OtherElectricalEquipmentV1
|
|
65
65
|
from openepd.model.specs.singular.electrical_transmission_and_distribution_equipment import (
|
|
66
66
|
ElectricalTransmissionAndDistributionEquipmentV1,
|
|
67
67
|
)
|
|
@@ -77,7 +77,6 @@ from openepd.model.specs.singular.mechanical import MechanicalV1
|
|
|
77
77
|
from openepd.model.specs.singular.mechanical_insulation import MechanicalInsulationV1
|
|
78
78
|
from openepd.model.specs.singular.network_infrastructure import NetworkInfrastructureV1
|
|
79
79
|
from openepd.model.specs.singular.openings import OpeningsV1
|
|
80
|
-
from openepd.model.specs.singular.other_electrical_equipment import OtherElectricalEquipmentV1
|
|
81
80
|
from openepd.model.specs.singular.other_materials import OtherMaterialsV1
|
|
82
81
|
from openepd.model.specs.singular.plumbing import PlumbingV1
|
|
83
82
|
from openepd.model.specs.singular.precast_concrete import PrecastConcreteV1
|
|
@@ -18,6 +18,8 @@ __all__ = [
|
|
|
18
18
|
]
|
|
19
19
|
|
|
20
20
|
|
|
21
|
+
import pydantic
|
|
22
|
+
|
|
21
23
|
from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
|
|
22
24
|
|
|
23
25
|
from .accessories import AccessoriesRangeV1
|
|
@@ -30,7 +32,7 @@ from .cladding import CladdingRangeV1
|
|
|
30
32
|
from .cmu import CMURangeV1
|
|
31
33
|
from .concrete import ConcreteRangeV1
|
|
32
34
|
from .conveying_equipment import ConveyingEquipmentRangeV1
|
|
33
|
-
from .electrical import ElectricalRangeV1
|
|
35
|
+
from .electrical import ElectricalRangeV1, OtherElectricalEquipmentRangeV1
|
|
34
36
|
from .electrical_transmission_and_distribution_equipment import ElectricalTransmissionAndDistributionEquipmentRangeV1
|
|
35
37
|
from .electricity import ElectricityRangeV1
|
|
36
38
|
from .exterior_improvements import ExteriorImprovementsRangeV1
|
|
@@ -44,9 +46,16 @@ from .material_handling import MaterialHandlingRangeV1
|
|
|
44
46
|
from .mechanical import MechanicalRangeV1
|
|
45
47
|
from .mechanical_insulation import MechanicalInsulationRangeV1
|
|
46
48
|
from .network_infrastructure import NetworkInfrastructureRangeV1
|
|
49
|
+
from .non_construction import (
|
|
50
|
+
ChemicalsRangeV1,
|
|
51
|
+
ConsumerGoodsRangeV1,
|
|
52
|
+
ElectricityAndFuelRangeV1,
|
|
53
|
+
MachineryAndEquipmentRangeV1,
|
|
54
|
+
ServicesRangeV1,
|
|
55
|
+
VehiclesRangeV1,
|
|
56
|
+
)
|
|
47
57
|
from .openings import OpeningsRangeV1
|
|
48
|
-
from .
|
|
49
|
-
from .other_materials import OtherMaterialsRangeV1
|
|
58
|
+
from .other_materials import FoodBeverageRangeV1, OtherMaterialsRangeV1, TextileProductsRangeV1
|
|
50
59
|
from .plumbing import PlumbingRangeV1
|
|
51
60
|
from .precast_concrete import PrecastConcreteRangeV1
|
|
52
61
|
from .sheathing import SheathingRangeV1
|
|
@@ -64,7 +73,7 @@ class SpecsRange(BaseOpenEpdHierarchicalSpec):
|
|
|
64
73
|
Range version.
|
|
65
74
|
"""
|
|
66
75
|
|
|
67
|
-
_EXT_VERSION = "1.
|
|
76
|
+
_EXT_VERSION = "1.1"
|
|
68
77
|
|
|
69
78
|
CMU: CMURangeV1 | None = None
|
|
70
79
|
Masonry: MasonryRangeV1 | None = None
|
|
@@ -98,6 +107,26 @@ class SpecsRange(BaseOpenEpdHierarchicalSpec):
|
|
|
98
107
|
Electricity: ElectricityRangeV1 | None = None
|
|
99
108
|
Grouting: GroutingRangeV1 | None = None
|
|
100
109
|
MechanicalInsulation: MechanicalInsulationRangeV1 | None = None
|
|
101
|
-
OtherElectricalEquipment: OtherElectricalEquipmentRangeV1 | None = None
|
|
102
110
|
WoodJoists: WoodJoistsRangeV1 | None = None
|
|
103
111
|
ExteriorImprovements: ExteriorImprovementsRangeV1 | None = None
|
|
112
|
+
TextileProducts: TextileProductsRangeV1 | None = None
|
|
113
|
+
Chemicals: ChemicalsRangeV1 | None = None
|
|
114
|
+
ElectricityAndFuel: ElectricityAndFuelRangeV1 | None = None
|
|
115
|
+
Vehicles: VehiclesRangeV1 | None = None
|
|
116
|
+
MachineryAndEquipment: MachineryAndEquipmentRangeV1 | None = None
|
|
117
|
+
Services: ServicesRangeV1 | None = None
|
|
118
|
+
ConsumerGoods: ConsumerGoodsRangeV1 | None = None
|
|
119
|
+
FoodBeverage: FoodBeverageRangeV1 | None = None
|
|
120
|
+
|
|
121
|
+
OtherElectricalEquipment: OtherElectricalEquipmentRangeV1 | None = pydantic.Field(
|
|
122
|
+
default=None,
|
|
123
|
+
json_schema_extra={
|
|
124
|
+
"deprecated": True,
|
|
125
|
+
},
|
|
126
|
+
description=(
|
|
127
|
+
"SpecsRange.OtherElectricalEquipment is deprecated. Use ElectricalRangeV1.OtherElectricalEquipment instead."
|
|
128
|
+
),
|
|
129
|
+
)
|
|
130
|
+
"""
|
|
131
|
+
SpecsRange.OtherElectricalEquipment is deprecated. Use ElectricalRangeV1.OtherElectricalEquipment instead.
|
|
132
|
+
"""
|
|
@@ -408,6 +408,16 @@ class ElectricalConduitRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
|
408
408
|
material: list[ConduitMaterial] | None = None
|
|
409
409
|
|
|
410
410
|
|
|
411
|
+
class OtherElectricalEquipmentRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
412
|
+
"""
|
|
413
|
+
Other Electrical Equipment.
|
|
414
|
+
|
|
415
|
+
Range version.
|
|
416
|
+
"""
|
|
417
|
+
|
|
418
|
+
_EXT_VERSION = "1.0"
|
|
419
|
+
|
|
420
|
+
|
|
411
421
|
class ElectricalRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
412
422
|
"""
|
|
413
423
|
Electric power and equipment.
|
|
@@ -415,7 +425,7 @@ class ElectricalRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
|
415
425
|
Range version.
|
|
416
426
|
"""
|
|
417
427
|
|
|
418
|
-
_EXT_VERSION = "1.
|
|
428
|
+
_EXT_VERSION = "1.2"
|
|
419
429
|
|
|
420
430
|
ElectricalPowerStorage: ElectricalPowerStorageRangeV1 | None = None
|
|
421
431
|
LowVoltageElectricalDistribution: LowVoltageElectricalDistributionRangeV1 | None = None
|
|
@@ -423,3 +433,4 @@ class ElectricalRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
|
423
433
|
ElectricPower: ElectricPowerRangeV1 | None = None
|
|
424
434
|
Lighting: LightingRangeV1 | None = None
|
|
425
435
|
ElectricalConduit: ElectricalConduitRangeV1 | None = None
|
|
436
|
+
OtherElectricalEquipment: OtherElectricalEquipmentRangeV1 | None = None
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Copyright 2025 by C Change Labs Inc. www.c-change-labs.com
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
#
|
|
16
|
+
from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
class ChemicalsRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
20
|
+
"""Products of the Chemical or Allied Industries. Includes most products in WCO HS Section VI."""
|
|
21
|
+
|
|
22
|
+
_EXT_VERSION = "1.0"
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class ElectricityAndFuelRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
26
|
+
"""Energy carriers including fuels, electricity, and steam."""
|
|
27
|
+
|
|
28
|
+
_EXT_VERSION = "1.0"
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class VehiclesRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
32
|
+
"""Machinery for moving people and goods. Includes most products in WCO HS Section XVII."""
|
|
33
|
+
|
|
34
|
+
_EXT_VERSION = "1.0"
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
class MachineryAndEquipmentRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
38
|
+
"""Machinery other than for installation in a building."""
|
|
39
|
+
|
|
40
|
+
_EXT_VERSION = "1.0"
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
class ServicesRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
44
|
+
"""Services, including digital and professional services."""
|
|
45
|
+
|
|
46
|
+
_EXT_VERSION = "1.0"
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
class ConsumerGoodsRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
50
|
+
"""Nonperishable products intended for use by individual consumers."""
|
|
51
|
+
|
|
52
|
+
_EXT_VERSION = "1.0"
|
|
@@ -33,6 +33,8 @@ __all__ = (
|
|
|
33
33
|
# NB! This is a generated code. Do not edit it manually. Please see src/openepd/model/specs/README.md
|
|
34
34
|
|
|
35
35
|
|
|
36
|
+
import pydantic
|
|
37
|
+
|
|
36
38
|
from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
|
|
37
39
|
|
|
38
40
|
|
|
@@ -100,8 +102,34 @@ class UnsupportedRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
|
100
102
|
_EXT_VERSION = "1.0"
|
|
101
103
|
|
|
102
104
|
CleaningProducts: CleaningProductsRangeV1 | None = None
|
|
105
|
+
Clothing: ClothingRangeV1 | None = pydantic.Field(
|
|
106
|
+
default=None,
|
|
107
|
+
json_schema_extra={
|
|
108
|
+
"deprecated": True,
|
|
109
|
+
},
|
|
110
|
+
description="UnsupportedRangeV1.Clothing is deprecated. Use TextileProductsRangeV1.Clothing instead.",
|
|
111
|
+
)
|
|
112
|
+
"""
|
|
113
|
+
UnsupportedRangeV1.Clothing is deprecated. Use TextileProductsRangeV1.Clothing instead.
|
|
114
|
+
"""
|
|
115
|
+
FoodBeverage: FoodBeverageRangeV1 | None = pydantic.Field(
|
|
116
|
+
default=None,
|
|
117
|
+
json_schema_extra={
|
|
118
|
+
"deprecated": True,
|
|
119
|
+
},
|
|
120
|
+
description="UnsupportedRangeV1.FoodBeverage is deprecated. Use SpecsRange.FoodBeverage instead.",
|
|
121
|
+
)
|
|
122
|
+
"""
|
|
123
|
+
UnsupportedRangeV1.FoodBeverage is deprecated. Use SpecsRange.FoodBeverage instead.
|
|
124
|
+
"""
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
class TextileProductsRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
128
|
+
"""Products to be worn by humans, and materials intended to manufacture them. Includes most of WS HS Sections XI, XII."""
|
|
129
|
+
|
|
130
|
+
_EXT_VERSION = "1.0"
|
|
131
|
+
|
|
103
132
|
Clothing: ClothingRangeV1 | None = None
|
|
104
|
-
FoodBeverage: FoodBeverageRangeV1 | None = None
|
|
105
133
|
|
|
106
134
|
|
|
107
135
|
class CopperRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
@@ -174,6 +202,18 @@ class ZincRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
|
174
202
|
_EXT_VERSION = "1.0"
|
|
175
203
|
|
|
176
204
|
|
|
205
|
+
class OtherPaperPlasticRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
206
|
+
"""Other products primarily made of plastic or paper. Includes WCO HS sections VII and X."""
|
|
207
|
+
|
|
208
|
+
_EXT_VERSION = "1.0"
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
class OtherMineralMetalRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
212
|
+
"""Base minerals, metals, materials, and products made primarily of them not otherwise classified. Includes most of WCO HS Section XV."""
|
|
213
|
+
|
|
214
|
+
_EXT_VERSION = "1.0"
|
|
215
|
+
|
|
216
|
+
|
|
177
217
|
class OtherMaterialsRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
178
218
|
"""
|
|
179
219
|
Broad category of materials not yet classified.
|
|
@@ -181,7 +221,7 @@ class OtherMaterialsRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
|
181
221
|
Range version.
|
|
182
222
|
"""
|
|
183
223
|
|
|
184
|
-
_EXT_VERSION = "1.
|
|
224
|
+
_EXT_VERSION = "1.1"
|
|
185
225
|
|
|
186
226
|
TransportationInfrastructure: TransportationInfrastructureRangeV1 | None = None
|
|
187
227
|
Unsupported: UnsupportedRangeV1 | None = None
|
|
@@ -192,3 +232,5 @@ class OtherMaterialsRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
|
192
232
|
Profiles: ProfilesRangeV1 | None = None
|
|
193
233
|
Unknown: UnknownRangeV1 | None = None
|
|
194
234
|
Zinc: ZincRangeV1 | None = None
|
|
235
|
+
OtherPaperPlastic: OtherPaperPlasticRangeV1 | None = None
|
|
236
|
+
OtherMineralMetal: OtherMineralMetalRangeV1 | None = None
|
|
@@ -40,7 +40,7 @@ from openepd.model.specs.singular.conveying_equipment import ConveyingEquipmentV
|
|
|
40
40
|
from openepd.model.specs.singular.deprecated import BaseCompatibilitySpec, get_safely, set_safely
|
|
41
41
|
from openepd.model.specs.singular.deprecated.concrete import ConcreteOldSpec
|
|
42
42
|
from openepd.model.specs.singular.deprecated.steel import SteelOldSpec
|
|
43
|
-
from openepd.model.specs.singular.electrical import ElectricalV1
|
|
43
|
+
from openepd.model.specs.singular.electrical import ElectricalV1, OtherElectricalEquipmentV1
|
|
44
44
|
from openepd.model.specs.singular.electrical_transmission_and_distribution_equipment import (
|
|
45
45
|
ElectricalTransmissionAndDistributionEquipmentV1,
|
|
46
46
|
)
|
|
@@ -56,9 +56,16 @@ from openepd.model.specs.singular.material_handling import MaterialHandlingV1
|
|
|
56
56
|
from openepd.model.specs.singular.mechanical import MechanicalV1
|
|
57
57
|
from openepd.model.specs.singular.mechanical_insulation import MechanicalInsulationV1
|
|
58
58
|
from openepd.model.specs.singular.network_infrastructure import NetworkInfrastructureV1
|
|
59
|
+
from openepd.model.specs.singular.non_construction import (
|
|
60
|
+
ChemicalsV1,
|
|
61
|
+
ConsumerGoodsV1,
|
|
62
|
+
ElectricityAndFuelV1,
|
|
63
|
+
MachineryAndEquipmentV1,
|
|
64
|
+
ServicesV1,
|
|
65
|
+
VehiclesV1,
|
|
66
|
+
)
|
|
59
67
|
from openepd.model.specs.singular.openings import OpeningsV1
|
|
60
|
-
from openepd.model.specs.singular.
|
|
61
|
-
from openepd.model.specs.singular.other_materials import OtherMaterialsV1
|
|
68
|
+
from openepd.model.specs.singular.other_materials import FoodBeverageV1, OtherMaterialsV1, TextileProductsV1
|
|
62
69
|
from openepd.model.specs.singular.plumbing import PlumbingV1
|
|
63
70
|
from openepd.model.specs.singular.precast_concrete import PrecastConcreteV1
|
|
64
71
|
from openepd.model.specs.singular.sheathing import SheathingV1
|
|
@@ -79,7 +86,7 @@ class Specs(BaseOpenEpdHierarchicalSpec):
|
|
|
79
86
|
SteelOldSpec,
|
|
80
87
|
]
|
|
81
88
|
|
|
82
|
-
_EXT_VERSION = "1.
|
|
89
|
+
_EXT_VERSION = "1.1"
|
|
83
90
|
|
|
84
91
|
# Nested specs:
|
|
85
92
|
CMU: CMUV1 | None = None
|
|
@@ -114,9 +121,27 @@ class Specs(BaseOpenEpdHierarchicalSpec):
|
|
|
114
121
|
Electricity: ElectricityV1 | None = None
|
|
115
122
|
Grouting: GroutingV1 | None = None
|
|
116
123
|
MechanicalInsulation: MechanicalInsulationV1 | None = None
|
|
117
|
-
OtherElectricalEquipment: OtherElectricalEquipmentV1 | None = None
|
|
118
124
|
WoodJoists: WoodJoistsV1 | None = None
|
|
119
125
|
ExteriorImprovements: ExteriorImprovementsV1 | None = None
|
|
126
|
+
TextileProducts: TextileProductsV1 | None = None
|
|
127
|
+
Chemicals: ChemicalsV1 | None = None
|
|
128
|
+
ElectricityAndFuel: ElectricityAndFuelV1 | None = None
|
|
129
|
+
Vehicles: VehiclesV1 | None = None
|
|
130
|
+
MachineryAndEquipment: MachineryAndEquipmentV1 | None = None
|
|
131
|
+
Services: ServicesV1 | None = None
|
|
132
|
+
ConsumerGoods: ConsumerGoodsV1 | None = None
|
|
133
|
+
FoodBeverage: FoodBeverageV1 | None = None
|
|
134
|
+
|
|
135
|
+
OtherElectricalEquipment: OtherElectricalEquipmentV1 | None = pydantic.Field(
|
|
136
|
+
default=None,
|
|
137
|
+
json_schema_extra={
|
|
138
|
+
"deprecated": True,
|
|
139
|
+
},
|
|
140
|
+
description="Specs.OtherElectricalEquipment is deprecated. Use ElectricalV1.OtherElectricalEquipment instead.",
|
|
141
|
+
)
|
|
142
|
+
"""
|
|
143
|
+
Specs.OtherElectricalEquipment is deprecated. Use ElectricalV1.OtherElectricalEquipment instead.
|
|
144
|
+
"""
|
|
120
145
|
|
|
121
146
|
# historical backward-compatible specs
|
|
122
147
|
concrete: ConcreteOldSpec | None = None
|
|
@@ -326,10 +326,16 @@ class ElectricalConduitV1(BaseOpenEpdHierarchicalSpec, ConduitMixin):
|
|
|
326
326
|
_EXT_VERSION = "1.1"
|
|
327
327
|
|
|
328
328
|
|
|
329
|
+
class OtherElectricalEquipmentV1(BaseOpenEpdHierarchicalSpec):
|
|
330
|
+
"""Other Electrical Equipment."""
|
|
331
|
+
|
|
332
|
+
_EXT_VERSION = "1.0"
|
|
333
|
+
|
|
334
|
+
|
|
329
335
|
class ElectricalV1(BaseOpenEpdHierarchicalSpec):
|
|
330
336
|
"""Electric power and equipment."""
|
|
331
337
|
|
|
332
|
-
_EXT_VERSION = "1.
|
|
338
|
+
_EXT_VERSION = "1.2"
|
|
333
339
|
|
|
334
340
|
# Nested specs:
|
|
335
341
|
ElectricalPowerStorage: ElectricalPowerStorageV1 | None = None
|
|
@@ -338,3 +344,4 @@ class ElectricalV1(BaseOpenEpdHierarchicalSpec):
|
|
|
338
344
|
ElectricPower: ElectricPowerV1 | None = None
|
|
339
345
|
Lighting: LightingV1 | None = None
|
|
340
346
|
ElectricalConduit: ElectricalConduitV1 | None = None
|
|
347
|
+
OtherElectricalEquipment: OtherElectricalEquipmentV1 | None = None
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Copyright 2025 by C Change Labs Inc. www.c-change-labs.com
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
#
|
|
16
|
+
from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
class ChemicalsV1(BaseOpenEpdHierarchicalSpec):
|
|
20
|
+
"""Products of the Chemical or Allied Industries. Includes most products in WCO HS Section VI."""
|
|
21
|
+
|
|
22
|
+
_EXT_VERSION = "1.0"
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class ElectricityAndFuelV1(BaseOpenEpdHierarchicalSpec):
|
|
26
|
+
"""Energy carriers including fuels, electricity, and steam."""
|
|
27
|
+
|
|
28
|
+
_EXT_VERSION = "1.0"
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class VehiclesV1(BaseOpenEpdHierarchicalSpec):
|
|
32
|
+
"""Machinery for moving people and goods. Includes most products in WCO HS Section XVII."""
|
|
33
|
+
|
|
34
|
+
_EXT_VERSION = "1.0"
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
class MachineryAndEquipmentV1(BaseOpenEpdHierarchicalSpec):
|
|
38
|
+
"""Machinery other than for installation in a building."""
|
|
39
|
+
|
|
40
|
+
_EXT_VERSION = "1.0"
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
class ServicesV1(BaseOpenEpdHierarchicalSpec):
|
|
44
|
+
"""Services, including digital and professional services."""
|
|
45
|
+
|
|
46
|
+
_EXT_VERSION = "1.0"
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
class ConsumerGoodsV1(BaseOpenEpdHierarchicalSpec):
|
|
50
|
+
"""Nonperishable products intended for use by individual consumers."""
|
|
51
|
+
|
|
52
|
+
_EXT_VERSION = "1.0"
|
|
@@ -13,6 +13,8 @@
|
|
|
13
13
|
# See the License for the specific language governing permissions and
|
|
14
14
|
# limitations under the License.
|
|
15
15
|
#
|
|
16
|
+
import pydantic
|
|
17
|
+
|
|
16
18
|
from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
|
|
17
19
|
|
|
18
20
|
|
|
@@ -60,8 +62,35 @@ class UnsupportedV1(BaseOpenEpdHierarchicalSpec):
|
|
|
60
62
|
|
|
61
63
|
# Nested specs:
|
|
62
64
|
CleaningProducts: CleaningProductsV1 | None = None
|
|
65
|
+
|
|
66
|
+
Clothing: ClothingV1 | None = pydantic.Field(
|
|
67
|
+
default=None,
|
|
68
|
+
json_schema_extra={
|
|
69
|
+
"deprecated": True,
|
|
70
|
+
},
|
|
71
|
+
description="UnsupportedV1.Clothing is deprecated. Use TextileProductsV1.Clothing instead.",
|
|
72
|
+
)
|
|
73
|
+
"""
|
|
74
|
+
UnsupportedV1.Clothing is deprecated. Use TextileProductsV1.Clothing instead.
|
|
75
|
+
"""
|
|
76
|
+
FoodBeverage: FoodBeverageV1 | None = pydantic.Field(
|
|
77
|
+
default=None,
|
|
78
|
+
json_schema_extra={
|
|
79
|
+
"deprecated": True,
|
|
80
|
+
},
|
|
81
|
+
description="UnsupportedV1.FoodBeverage is deprecated. Use Specs.FoodBeverage instead.",
|
|
82
|
+
)
|
|
83
|
+
"""
|
|
84
|
+
UnsupportedV1.FoodBeverage is deprecated. Use TextileProductsV1.FoodBeverage instead.
|
|
85
|
+
"""
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
class TextileProductsV1(BaseOpenEpdHierarchicalSpec):
|
|
89
|
+
"""Products to be worn by humans, and materials intended to manufacture them. Includes most of WS HS Sections XI, XII."""
|
|
90
|
+
|
|
91
|
+
_EXT_VERSION = "1.0"
|
|
92
|
+
|
|
63
93
|
Clothing: ClothingV1 | None = None
|
|
64
|
-
FoodBeverage: FoodBeverageV1 | None = None
|
|
65
94
|
|
|
66
95
|
|
|
67
96
|
class CopperV1(BaseOpenEpdHierarchicalSpec):
|
|
@@ -106,10 +135,22 @@ class ZincV1(BaseOpenEpdHierarchicalSpec):
|
|
|
106
135
|
_EXT_VERSION = "1.0"
|
|
107
136
|
|
|
108
137
|
|
|
138
|
+
class OtherPaperPlasticV1(BaseOpenEpdHierarchicalSpec):
|
|
139
|
+
"""Other products primarily made of plastic or paper. Includes WCO HS sections VII and X."""
|
|
140
|
+
|
|
141
|
+
_EXT_VERSION = "1.0"
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
class OtherMineralMetalV1(BaseOpenEpdHierarchicalSpec):
|
|
145
|
+
"""Base minerals, metals, materials, and products made primarily of them not otherwise classified. Includes most of WCO HS Section XV."""
|
|
146
|
+
|
|
147
|
+
_EXT_VERSION = "1.0"
|
|
148
|
+
|
|
149
|
+
|
|
109
150
|
class OtherMaterialsV1(BaseOpenEpdHierarchicalSpec):
|
|
110
151
|
"""Broad category of materials not yet classified."""
|
|
111
152
|
|
|
112
|
-
_EXT_VERSION = "1.
|
|
153
|
+
_EXT_VERSION = "1.1"
|
|
113
154
|
|
|
114
155
|
# Nested specs:
|
|
115
156
|
TransportationInfrastructure: TransportationInfrastructureV1 | None = None
|
|
@@ -121,3 +162,5 @@ class OtherMaterialsV1(BaseOpenEpdHierarchicalSpec):
|
|
|
121
162
|
Profiles: ProfilesV1 | None = None
|
|
122
163
|
Unknown: UnknownV1 | None = None
|
|
123
164
|
Zinc: ZincV1 | None = None
|
|
165
|
+
OtherPaperPlastic: OtherPaperPlasticV1 | None = None
|
|
166
|
+
OtherMineralMetal: OtherMineralMetalV1 | None = None
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
openepd/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dvvtd4,620
|
|
2
|
-
openepd/__version__.py,sha256=
|
|
2
|
+
openepd/__version__.py,sha256=nxitozeMrGujtN03G85IeTSzwzKLY1-NdBqX4axAPKA,639
|
|
3
3
|
openepd/api/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dvvtd4,620
|
|
4
4
|
openepd/api/average_dataset/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dvvtd4,620
|
|
5
5
|
openepd/api/average_dataset/generic_estimate_sync_api.py,sha256=mjTT8eGtfj6Fgp-wcs0cCWA7DJo1KL_iQ75rgKkaY3c,8037
|
|
@@ -54,12 +54,12 @@ openepd/model/lcia.py,sha256=6o6GNwLaQaWyYAXCnHl2aAgDa12_v7DwpME5BfVMezk,32780
|
|
|
54
54
|
openepd/model/org.py,sha256=ij_GEFEShRh-k4o29gSowiaJbCuyNqWu61YL3BNq0FM,9369
|
|
55
55
|
openepd/model/pcr.py,sha256=cu3EakCAjBCkcb_AaLXB-xEjY0mlG-wJe74zGc5tdS0,5637
|
|
56
56
|
openepd/model/specs/README.md,sha256=UGhSiFJ9hOxT1mZl-5ZrhkOrPKf1W_gcu5CI9hzV7LU,2430
|
|
57
|
-
openepd/model/specs/__init__.py,sha256
|
|
57
|
+
openepd/model/specs/__init__.py,sha256=-3uaImbGfOkRdpHQkhHe0eimAg0UBntR3WiT21Pmt1I,3837
|
|
58
58
|
openepd/model/specs/asphalt.py,sha256=Vj9q6ZDwl6Mv8XX_PWVuqVwDIzQ7MEIamysF5cmYteQ,3536
|
|
59
59
|
openepd/model/specs/base.py,sha256=0dwoChpyj-vnsMlaSEpklZnJkK9C05GbuTYi71AS_FY,2779
|
|
60
60
|
openepd/model/specs/concrete.py,sha256=gjly5f7QEuaKnYZStMm0CisU0Us1PUa2HmxPyhhmuO0,5573
|
|
61
61
|
openepd/model/specs/enums.py,sha256=o_9Li-T2CrL73ugiELj_JnI4NqrrgR0rhCswpVR7IS4,63828
|
|
62
|
-
openepd/model/specs/range/__init__.py,sha256=
|
|
62
|
+
openepd/model/specs/range/__init__.py,sha256=BizCeVTZUxzCosJdH5AUDMlATOfDEkzdDz97DRkBsVg,5572
|
|
63
63
|
openepd/model/specs/range/accessories.py,sha256=hZYz8mvAqrfLFiOIZ9qQZ59zmEiu0xE61Ko9cQ7NSKU,2498
|
|
64
64
|
openepd/model/specs/range/aggregates.py,sha256=wnGI6AxtQaaYgCGvqYUuM94JVOBipCBRvFLTwpflsyA,2555
|
|
65
65
|
openepd/model/specs/range/aluminium.py,sha256=6fvrm2cyToG_pf7B_vl6QPYjoyWFSctEA8CIi8E1ys4,2741
|
|
@@ -70,7 +70,7 @@ openepd/model/specs/range/cladding.py,sha256=7sk1wE3V_yt_nwvLFSnIZMjJ5d7OCbMh2MY
|
|
|
70
70
|
openepd/model/specs/range/cmu.py,sha256=Xi_YL58VPBgfW0I6jqRwsIxnMoVztRfx1IFn3EP9MlM,1851
|
|
71
71
|
openepd/model/specs/range/concrete.py,sha256=PnvgMzshcB5nvLYMkT41PzixpEtiYtAGOGLixvtEQ5Q,7685
|
|
72
72
|
openepd/model/specs/range/conveying_equipment.py,sha256=BLuy_FhgERau3fSaGOuP7ZZpe_PH7s0ttVUzB06BjtU,3216
|
|
73
|
-
openepd/model/specs/range/electrical.py,sha256=
|
|
73
|
+
openepd/model/specs/range/electrical.py,sha256=WSzVi5tkqtulmqZc8xKh0HjdgBFjONFeo1tEFWKyw0Q,12185
|
|
74
74
|
openepd/model/specs/range/electrical_transmission_and_distribution_equipment.py,sha256=xDdyLj6oJRmdybq7W91MtgE80FDpaG6ii5hE921aRGQ,2525
|
|
75
75
|
openepd/model/specs/range/electricity.py,sha256=yn_S25C_tZqseb8hiJ1yiHszu2mQ49FOFWWCqNpOBY0,997
|
|
76
76
|
openepd/model/specs/range/exterior_improvements.py,sha256=MRKRXB648H4DkK-kpvrcbNek2mSJKHSoMak_OC9iWVA,1720
|
|
@@ -86,9 +86,9 @@ openepd/model/specs/range/mechanical_insulation.py,sha256=eBvNMuW-zZyphay9aKOphw
|
|
|
86
86
|
openepd/model/specs/range/mixins/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dvvtd4,620
|
|
87
87
|
openepd/model/specs/range/mixins/access_flooring_mixin.py,sha256=pQH7lt7oD3e8g19-_4DEo8xmVU4pnpT-XKQbCwygmbc,2366
|
|
88
88
|
openepd/model/specs/range/network_infrastructure.py,sha256=nq8g1s7_EKjZNODxnlfMB7ipZ90z5w7TVd6b5EUywkA,8738
|
|
89
|
+
openepd/model/specs/range/non_construction.py,sha256=PDJn1QKQR9wHYr-KtWIxji-41IKFSeMZUS1fSjy4QGU,1664
|
|
89
90
|
openepd/model/specs/range/openings.py,sha256=j7c49jlvfvnu03KVvYiNyyWEAjQYcxW6czxgD1z93Rw,15734
|
|
90
|
-
openepd/model/specs/range/
|
|
91
|
-
openepd/model/specs/range/other_materials.py,sha256=RHusAyExYl9n1BDiOFDq2_znEn3MXGxEkunb3BjiC2U,4495
|
|
91
|
+
openepd/model/specs/range/other_materials.py,sha256=RaLM3TrQ_woHJpYUug6XapSZmWfzYbkFlULegWfBab4,5962
|
|
92
92
|
openepd/model/specs/range/plumbing.py,sha256=pjdIOvQAat-8e0zqJM7gs30h131mqryU5uCGOdeTRaE,5382
|
|
93
93
|
openepd/model/specs/range/precast_concrete.py,sha256=i766QYGjnl5_1Ip_6_-x1QpCXSybM0bjN4ESq2njIQ0,3820
|
|
94
94
|
openepd/model/specs/range/sheathing.py,sha256=FOosFJ8fsyqQnlLTgEqxM4xzDtiYP2jQ7dCf2T4K1O4,3446
|
|
@@ -97,7 +97,7 @@ openepd/model/specs/range/thermal_moisture_protection.py,sha256=cdr610ZdOlbd3LYz
|
|
|
97
97
|
openepd/model/specs/range/utility_piping.py,sha256=doRcQRfBWvHX7FDDYk-bEU5rVCS_vjZ_5gKslI0xR7Y,2671
|
|
98
98
|
openepd/model/specs/range/wood.py,sha256=WIZOSixS1hlmI66XpL9PhVRZ3ST423A_ihCz2CEbuCk,6914
|
|
99
99
|
openepd/model/specs/range/wood_joists.py,sha256=PVGJZPdaI685rUI6TS3MZrAFkeMckFGpCYTNJLBr6IM,1786
|
|
100
|
-
openepd/model/specs/singular/__init__.py,sha256=
|
|
100
|
+
openepd/model/specs/singular/__init__.py,sha256=jlivBY6OZShPAWCoh-0AUIPO45deG-9Yk1MKwv2Z44s,12506
|
|
101
101
|
openepd/model/specs/singular/accessories.py,sha256=xcuSJrG84oTm_w76_wlv_sItfK36gSyDmUD2TnpZnVE,2013
|
|
102
102
|
openepd/model/specs/singular/aggregates.py,sha256=n_AbZK6TJHJ6boyMz6AyikUkMiNlq8G_NOcqEy_A-Sg,2975
|
|
103
103
|
openepd/model/specs/singular/aluminium.py,sha256=rOFEzIVvR2t0QGLN3Zk_Pi_m4v2dMU4PoDQN1hULMn4,2524
|
|
@@ -112,7 +112,7 @@ openepd/model/specs/singular/conveying_equipment.py,sha256=Hcy1zcXKsGIuh303xiRJw
|
|
|
112
112
|
openepd/model/specs/singular/deprecated/__init__.py,sha256=NufJ5lJeuWQ_aV7tHIX_H_StU4fNdGkcEaCA64FOcsA,2619
|
|
113
113
|
openepd/model/specs/singular/deprecated/concrete.py,sha256=xqHxwFUzy0XEa66e1N1Z3aKt6hhnHhbJ76XiRoe0wtQ,5604
|
|
114
114
|
openepd/model/specs/singular/deprecated/steel.py,sha256=xqp6rqA49ARY7uvObvnNh-y9cN0WCy0Qz3sMuuIBXPY,3647
|
|
115
|
-
openepd/model/specs/singular/electrical.py,sha256=
|
|
115
|
+
openepd/model/specs/singular/electrical.py,sha256=URg3d-Gy8hrmlY-Mj9Vf09mEAtxHmdZxzgWdSa1ptcc,11798
|
|
116
116
|
openepd/model/specs/singular/electrical_transmission_and_distribution_equipment.py,sha256=oZYyHgnXn9RH3YzltUEDiiQKrin2mvMlTgC3OhxV7DY,1978
|
|
117
117
|
openepd/model/specs/singular/electricity.py,sha256=f1cJ9eklNUf97khCIZiT5-z8V_TbOcvH2me_1UTQVrE,823
|
|
118
118
|
openepd/model/specs/singular/exterior_improvements.py,sha256=f_xJJCVVAlHi5A7v1x9Xu_CIht4M-PstAtabWxDxLMA,1695
|
|
@@ -129,9 +129,9 @@ openepd/model/specs/singular/mixins/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_s
|
|
|
129
129
|
openepd/model/specs/singular/mixins/access_flooring_mixin.py,sha256=gM5H6lTjj2eytYnzt-4PaJ_dc8wNH_gJzBazJb83j5E,3083
|
|
130
130
|
openepd/model/specs/singular/mixins/conduit_mixin.py,sha256=H5rbXIy3lpiU_Rub3_f7cECtQE2odu1-nIKuRjtO6ts,1959
|
|
131
131
|
openepd/model/specs/singular/network_infrastructure.py,sha256=QGMIFzexHH94phkFw7iYl-fTZ_514dwYgvC-2sHjOZw,9316
|
|
132
|
+
openepd/model/specs/singular/non_construction.py,sha256=VW_dP5I8AUkwa923d2r9X8S78k6OUA5rU0UAypUX8t8,1634
|
|
132
133
|
openepd/model/specs/singular/openings.py,sha256=8XI9W-4h9oK1_hWNVOzNwvWxIZdAEze0A8ach5hThSU,19794
|
|
133
|
-
openepd/model/specs/singular/
|
|
134
|
-
openepd/model/specs/singular/other_materials.py,sha256=_00_fCPn7G_-HVKC1cQcNvBDf4CtXFLOGvYLDJtL5ZA,3498
|
|
134
|
+
openepd/model/specs/singular/other_materials.py,sha256=5KbH-db7-FpHiinTRcrGLcIDDkn790a3Mem5ZPpwcsA,4908
|
|
135
135
|
openepd/model/specs/singular/plumbing.py,sha256=dP6r7xy2yeP8ICEBN79CfJqyDiuwpTtDnURBfWmFWPs,4639
|
|
136
136
|
openepd/model/specs/singular/precast_concrete.py,sha256=25vn5UxiQbhsNisqBF9_GYASMl3D1iuDWxfnV5HOV4k,7567
|
|
137
137
|
openepd/model/specs/singular/sheathing.py,sha256=J1lHRo0eTcWGhqwLHGnEZq3SHJkVCvSedvg2lGuwDyo,3995
|
|
@@ -154,7 +154,7 @@ openepd/utils/mapping/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dv
|
|
|
154
154
|
openepd/utils/mapping/common.py,sha256=hxfN-WW2WLwE_agQzf_mhvz6OHq5WWlr24uZ1S81k4Y,8426
|
|
155
155
|
openepd/utils/mapping/geography.py,sha256=1_-dvLk11Hqn-K58yUI5pQ5X5gsnJPFlFT7JK2Rdoeg,2396
|
|
156
156
|
openepd/utils/markdown.py,sha256=RQmudPhb4QU1I4-S-VV2WFbzzq2Po09kbpjjKbwkA9E,1830
|
|
157
|
-
openepd-7.
|
|
158
|
-
openepd-7.
|
|
159
|
-
openepd-7.
|
|
160
|
-
openepd-7.
|
|
157
|
+
openepd-7.13.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
158
|
+
openepd-7.13.0.dist-info/METADATA,sha256=L_MQy3vYZ83yVCZblQ7-I5dwbIeEzbu-mxsyiUlA1hQ,9811
|
|
159
|
+
openepd-7.13.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
160
|
+
openepd-7.13.0.dist-info/RECORD,,
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
#
|
|
2
|
-
# Copyright 2025 by C Change Labs Inc. www.c-change-labs.com
|
|
3
|
-
#
|
|
4
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
# you may not use this file except in compliance with the License.
|
|
6
|
-
# You may obtain a copy of the License at
|
|
7
|
-
#
|
|
8
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
#
|
|
10
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
# See the License for the specific language governing permissions and
|
|
14
|
-
# limitations under the License.
|
|
15
|
-
#
|
|
16
|
-
__all__ = ("OtherElectricalEquipmentRangeV1",)
|
|
17
|
-
|
|
18
|
-
# NB! This is a generated code. Do not edit it manually. Please see src/openepd/model/specs/README.md
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
class OtherElectricalEquipmentRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
25
|
-
"""
|
|
26
|
-
Other Electrical Equipment.
|
|
27
|
-
|
|
28
|
-
Range version.
|
|
29
|
-
"""
|
|
30
|
-
|
|
31
|
-
_EXT_VERSION = "1.0"
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
#
|
|
2
|
-
# Copyright 2025 by C Change Labs Inc. www.c-change-labs.com
|
|
3
|
-
#
|
|
4
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
# you may not use this file except in compliance with the License.
|
|
6
|
-
# You may obtain a copy of the License at
|
|
7
|
-
#
|
|
8
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
#
|
|
10
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
# See the License for the specific language governing permissions and
|
|
14
|
-
# limitations under the License.
|
|
15
|
-
#
|
|
16
|
-
from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
class OtherElectricalEquipmentV1(BaseOpenEpdHierarchicalSpec):
|
|
20
|
-
"""Other Electrical Equipment."""
|
|
21
|
-
|
|
22
|
-
_EXT_VERSION = "1.0"
|
|
File without changes
|
|
File without changes
|