openepd 6.29.0__py3-none-any.whl → 6.31.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 +28 -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 +37 -2
- openepd/model/specs/singular/__init__.py +27 -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 +36 -2
- {openepd-6.29.0.dist-info → openepd-6.31.0.dist-info}/METADATA +1 -1
- {openepd-6.29.0.dist-info → openepd-6.31.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-6.29.0.dist-info → openepd-6.31.0.dist-info}/LICENSE +0 -0
- {openepd-6.29.0.dist-info → openepd-6.31.0.dist-info}/WHEEL +0 -0
openepd/__version__.py
CHANGED
openepd/model/specs/__init__.py
CHANGED
|
@@ -60,7 +60,7 @@ from openepd.model.specs.singular.cladding import CladdingV1
|
|
|
60
60
|
from openepd.model.specs.singular.cmu import CMUV1
|
|
61
61
|
from openepd.model.specs.singular.concrete import ConcreteV1
|
|
62
62
|
from openepd.model.specs.singular.conveying_equipment import ConveyingEquipmentV1
|
|
63
|
-
from openepd.model.specs.singular.electrical import ElectricalV1
|
|
63
|
+
from openepd.model.specs.singular.electrical import ElectricalV1, OtherElectricalEquipmentV1
|
|
64
64
|
from openepd.model.specs.singular.electrical_transmission_and_distribution_equipment import (
|
|
65
65
|
ElectricalTransmissionAndDistributionEquipmentV1,
|
|
66
66
|
)
|
|
@@ -76,7 +76,6 @@ from openepd.model.specs.singular.mechanical import MechanicalV1
|
|
|
76
76
|
from openepd.model.specs.singular.mechanical_insulation import MechanicalInsulationV1
|
|
77
77
|
from openepd.model.specs.singular.network_infrastructure import NetworkInfrastructureV1
|
|
78
78
|
from openepd.model.specs.singular.openings import OpeningsV1
|
|
79
|
-
from openepd.model.specs.singular.other_electrical_equipment import OtherElectricalEquipmentV1
|
|
80
79
|
from openepd.model.specs.singular.other_materials import OtherMaterialsV1
|
|
81
80
|
from openepd.model.specs.singular.plumbing import PlumbingV1
|
|
82
81
|
from openepd.model.specs.singular.precast_concrete import PrecastConcreteV1
|
|
@@ -18,6 +18,7 @@ __all__ = [
|
|
|
18
18
|
]
|
|
19
19
|
|
|
20
20
|
|
|
21
|
+
from openepd.compat.pydantic import pyd
|
|
21
22
|
from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
|
|
22
23
|
|
|
23
24
|
from .accessories import AccessoriesRangeV1
|
|
@@ -30,7 +31,7 @@ from .cladding import CladdingRangeV1
|
|
|
30
31
|
from .cmu import CMURangeV1
|
|
31
32
|
from .concrete import ConcreteRangeV1
|
|
32
33
|
from .conveying_equipment import ConveyingEquipmentRangeV1
|
|
33
|
-
from .electrical import ElectricalRangeV1
|
|
34
|
+
from .electrical import ElectricalRangeV1, OtherElectricalEquipmentRangeV1
|
|
34
35
|
from .electrical_transmission_and_distribution_equipment import ElectricalTransmissionAndDistributionEquipmentRangeV1
|
|
35
36
|
from .electricity import ElectricityRangeV1
|
|
36
37
|
from .exterior_improvements import ExteriorImprovementsRangeV1
|
|
@@ -44,9 +45,16 @@ from .material_handling import MaterialHandlingRangeV1
|
|
|
44
45
|
from .mechanical import MechanicalRangeV1
|
|
45
46
|
from .mechanical_insulation import MechanicalInsulationRangeV1
|
|
46
47
|
from .network_infrastructure import NetworkInfrastructureRangeV1
|
|
48
|
+
from .non_construction import (
|
|
49
|
+
ChemicalsRangeV1,
|
|
50
|
+
ConsumerGoodsRangeV1,
|
|
51
|
+
ElectricityAndFuelRangeV1,
|
|
52
|
+
MachineryAndEquipmentRangeV1,
|
|
53
|
+
ServicesRangeV1,
|
|
54
|
+
VehiclesRangeV1,
|
|
55
|
+
)
|
|
47
56
|
from .openings import OpeningsRangeV1
|
|
48
|
-
from .
|
|
49
|
-
from .other_materials import OtherMaterialsRangeV1
|
|
57
|
+
from .other_materials import FoodBeverageRangeV1, OtherMaterialsRangeV1, TextileProductsRangeV1
|
|
50
58
|
from .plumbing import PlumbingRangeV1
|
|
51
59
|
from .precast_concrete import PrecastConcreteRangeV1
|
|
52
60
|
from .sheathing import SheathingRangeV1
|
|
@@ -64,7 +72,7 @@ class SpecsRange(BaseOpenEpdHierarchicalSpec):
|
|
|
64
72
|
Range version.
|
|
65
73
|
"""
|
|
66
74
|
|
|
67
|
-
_EXT_VERSION = "1.
|
|
75
|
+
_EXT_VERSION = "1.1"
|
|
68
76
|
|
|
69
77
|
CMU: CMURangeV1 | None = None
|
|
70
78
|
Masonry: MasonryRangeV1 | None = None
|
|
@@ -98,6 +106,21 @@ class SpecsRange(BaseOpenEpdHierarchicalSpec):
|
|
|
98
106
|
Electricity: ElectricityRangeV1 | None = None
|
|
99
107
|
Grouting: GroutingRangeV1 | None = None
|
|
100
108
|
MechanicalInsulation: MechanicalInsulationRangeV1 | None = None
|
|
101
|
-
OtherElectricalEquipment: OtherElectricalEquipmentRangeV1 | None = None
|
|
102
109
|
WoodJoists: WoodJoistsRangeV1 | None = None
|
|
103
110
|
ExteriorImprovements: ExteriorImprovementsRangeV1 | None = None
|
|
111
|
+
TextileProducts: TextileProductsRangeV1 | None = None
|
|
112
|
+
Chemicals: ChemicalsRangeV1 | None = None
|
|
113
|
+
ElectricityAndFuel: ElectricityAndFuelRangeV1 | None = None
|
|
114
|
+
Vehicles: VehiclesRangeV1 | None = None
|
|
115
|
+
MachineryAndEquipment: MachineryAndEquipmentRangeV1 | None = None
|
|
116
|
+
Services: ServicesRangeV1 | None = None
|
|
117
|
+
ConsumerGoods: ConsumerGoodsRangeV1 | None = None
|
|
118
|
+
FoodBeverage: FoodBeverageRangeV1 | None = None
|
|
119
|
+
|
|
120
|
+
OtherElectricalEquipment: OtherElectricalEquipmentRangeV1 | None = pyd.Field(
|
|
121
|
+
default=None,
|
|
122
|
+
deprecated="SpecsRange.OtherElectricalEquipment is deprecated. Use ElectricalRangeV1.OtherElectricalEquipment instead.",
|
|
123
|
+
)
|
|
124
|
+
"""
|
|
125
|
+
SpecsRange.OtherElectricalEquipment is deprecated. Use ElectricalRangeV1.OtherElectricalEquipment instead.
|
|
126
|
+
"""
|
|
@@ -406,6 +406,16 @@ class ElectricalConduitRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
|
406
406
|
material: list[ConduitMaterial] | None = None
|
|
407
407
|
|
|
408
408
|
|
|
409
|
+
class OtherElectricalEquipmentRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
410
|
+
"""
|
|
411
|
+
Other Electrical Equipment.
|
|
412
|
+
|
|
413
|
+
Range version.
|
|
414
|
+
"""
|
|
415
|
+
|
|
416
|
+
_EXT_VERSION = "1.0"
|
|
417
|
+
|
|
418
|
+
|
|
409
419
|
class ElectricalRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
410
420
|
"""
|
|
411
421
|
Electric power and equipment.
|
|
@@ -413,7 +423,7 @@ class ElectricalRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
|
413
423
|
Range version.
|
|
414
424
|
"""
|
|
415
425
|
|
|
416
|
-
_EXT_VERSION = "1.
|
|
426
|
+
_EXT_VERSION = "1.2"
|
|
417
427
|
|
|
418
428
|
ElectricalPowerStorage: ElectricalPowerStorageRangeV1 | None = None
|
|
419
429
|
LowVoltageElectricalDistribution: LowVoltageElectricalDistributionRangeV1 | None = None
|
|
@@ -421,3 +431,4 @@ class ElectricalRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
|
421
431
|
ElectricPower: ElectricPowerRangeV1 | None = None
|
|
422
432
|
Lighting: LightingRangeV1 | None = None
|
|
423
433
|
ElectricalConduit: ElectricalConduitRangeV1 | None = None
|
|
434
|
+
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"
|
|
@@ -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
|
+
from openepd.compat.pydantic import pyd
|
|
17
|
+
|
|
16
18
|
__all__ = (
|
|
17
19
|
"AuxiliariesRangeV1",
|
|
18
20
|
"CleaningProductsRangeV1",
|
|
@@ -100,8 +102,27 @@ class UnsupportedRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
|
100
102
|
_EXT_VERSION = "1.0"
|
|
101
103
|
|
|
102
104
|
CleaningProducts: CleaningProductsRangeV1 | None = None
|
|
105
|
+
Clothing: ClothingRangeV1 | None = pyd.Field(
|
|
106
|
+
default=None,
|
|
107
|
+
deprecated="UnsupportedRangeV1.Clothing is deprecated. Use TextileProductsRangeV1.Clothing instead.",
|
|
108
|
+
)
|
|
109
|
+
"""
|
|
110
|
+
UnsupportedRangeV1.Clothing is deprecated. Use TextileProductsRangeV1.Clothing instead.
|
|
111
|
+
"""
|
|
112
|
+
FoodBeverage: FoodBeverageRangeV1 | None = pyd.Field(
|
|
113
|
+
default=None, deprecated="UnsupportedRangeV1.FoodBeverage is deprecated. Use SpecsRange.FoodBeverage instead."
|
|
114
|
+
)
|
|
115
|
+
"""
|
|
116
|
+
UnsupportedRangeV1.FoodBeverage is deprecated. Use SpecsRange.FoodBeverage instead.
|
|
117
|
+
"""
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
class TextileProductsRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
121
|
+
"""Products to be worn by humans, and materials intended to manufacture them. Includes most of WS HS Sections XI, XII."""
|
|
122
|
+
|
|
123
|
+
_EXT_VERSION = "1.0"
|
|
124
|
+
|
|
103
125
|
Clothing: ClothingRangeV1 | None = None
|
|
104
|
-
FoodBeverage: FoodBeverageRangeV1 | None = None
|
|
105
126
|
|
|
106
127
|
|
|
107
128
|
class CopperRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
@@ -174,6 +195,18 @@ class ZincRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
|
174
195
|
_EXT_VERSION = "1.0"
|
|
175
196
|
|
|
176
197
|
|
|
198
|
+
class OtherPaperPlasticRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
199
|
+
"""Other products primarily made of plastic or paper. Includes WCO HS sections VII and X."""
|
|
200
|
+
|
|
201
|
+
_EXT_VERSION = "1.0"
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
class OtherMineralMetalRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
205
|
+
"""Base minerals, metals, materials, and products made primarily of them not otherwise classified. Includes most of WCO HS Section XV."""
|
|
206
|
+
|
|
207
|
+
_EXT_VERSION = "1.0"
|
|
208
|
+
|
|
209
|
+
|
|
177
210
|
class OtherMaterialsRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
178
211
|
"""
|
|
179
212
|
Broad category of materials not yet classified.
|
|
@@ -181,7 +214,7 @@ class OtherMaterialsRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
|
181
214
|
Range version.
|
|
182
215
|
"""
|
|
183
216
|
|
|
184
|
-
_EXT_VERSION = "1.
|
|
217
|
+
_EXT_VERSION = "1.1"
|
|
185
218
|
|
|
186
219
|
TransportationInfrastructure: TransportationInfrastructureRangeV1 | None = None
|
|
187
220
|
Unsupported: UnsupportedRangeV1 | None = None
|
|
@@ -192,3 +225,5 @@ class OtherMaterialsRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
|
192
225
|
Profiles: ProfilesRangeV1 | None = None
|
|
193
226
|
Unknown: UnknownRangeV1 | None = None
|
|
194
227
|
Zinc: ZincRangeV1 | None = None
|
|
228
|
+
OtherPaperPlastic: OtherPaperPlasticRangeV1 | None = None
|
|
229
|
+
OtherMineralMetal: OtherMineralMetalRangeV1 | None = None
|
|
@@ -37,7 +37,7 @@ from openepd.model.specs.singular.conveying_equipment import ConveyingEquipmentV
|
|
|
37
37
|
from openepd.model.specs.singular.deprecated import BaseCompatibilitySpec, get_safely, set_safely
|
|
38
38
|
from openepd.model.specs.singular.deprecated.concrete import ConcreteOldSpec
|
|
39
39
|
from openepd.model.specs.singular.deprecated.steel import SteelOldSpec
|
|
40
|
-
from openepd.model.specs.singular.electrical import ElectricalV1
|
|
40
|
+
from openepd.model.specs.singular.electrical import ElectricalV1, OtherElectricalEquipmentV1
|
|
41
41
|
from openepd.model.specs.singular.electrical_transmission_and_distribution_equipment import (
|
|
42
42
|
ElectricalTransmissionAndDistributionEquipmentV1,
|
|
43
43
|
)
|
|
@@ -53,9 +53,16 @@ from openepd.model.specs.singular.material_handling import MaterialHandlingV1
|
|
|
53
53
|
from openepd.model.specs.singular.mechanical import MechanicalV1
|
|
54
54
|
from openepd.model.specs.singular.mechanical_insulation import MechanicalInsulationV1
|
|
55
55
|
from openepd.model.specs.singular.network_infrastructure import NetworkInfrastructureV1
|
|
56
|
+
from openepd.model.specs.singular.non_construction import (
|
|
57
|
+
ChemicalsV1,
|
|
58
|
+
ConsumerGoodsV1,
|
|
59
|
+
ElectricityAndFuelV1,
|
|
60
|
+
MachineryAndEquipmentV1,
|
|
61
|
+
ServicesV1,
|
|
62
|
+
VehiclesV1,
|
|
63
|
+
)
|
|
56
64
|
from openepd.model.specs.singular.openings import OpeningsV1
|
|
57
|
-
from openepd.model.specs.singular.
|
|
58
|
-
from openepd.model.specs.singular.other_materials import OtherMaterialsV1
|
|
65
|
+
from openepd.model.specs.singular.other_materials import FoodBeverageV1, OtherMaterialsV1, TextileProductsV1
|
|
59
66
|
from openepd.model.specs.singular.plumbing import PlumbingV1
|
|
60
67
|
from openepd.model.specs.singular.precast_concrete import PrecastConcreteV1
|
|
61
68
|
from openepd.model.specs.singular.sheathing import SheathingV1
|
|
@@ -73,7 +80,7 @@ class Specs(BaseOpenEpdHierarchicalSpec):
|
|
|
73
80
|
|
|
74
81
|
COMPATIBILITY_SPECS: ClassVar[list[type[BaseCompatibilitySpec]]] = [ConcreteOldSpec, SteelOldSpec]
|
|
75
82
|
|
|
76
|
-
_EXT_VERSION = "1.
|
|
83
|
+
_EXT_VERSION = "1.1"
|
|
77
84
|
|
|
78
85
|
# Nested specs:
|
|
79
86
|
CMU: CMUV1 | None = None
|
|
@@ -108,9 +115,24 @@ class Specs(BaseOpenEpdHierarchicalSpec):
|
|
|
108
115
|
Electricity: ElectricityV1 | None = None
|
|
109
116
|
Grouting: GroutingV1 | None = None
|
|
110
117
|
MechanicalInsulation: MechanicalInsulationV1 | None = None
|
|
111
|
-
OtherElectricalEquipment: OtherElectricalEquipmentV1 | None = None
|
|
112
118
|
WoodJoists: WoodJoistsV1 | None = None
|
|
113
119
|
ExteriorImprovements: ExteriorImprovementsV1 | None = None
|
|
120
|
+
TextileProducts: TextileProductsV1 | None = None
|
|
121
|
+
Chemicals: ChemicalsV1 | None = None
|
|
122
|
+
ElectricityAndFuel: ElectricityAndFuelV1 | None = None
|
|
123
|
+
Vehicles: VehiclesV1 | None = None
|
|
124
|
+
MachineryAndEquipment: MachineryAndEquipmentV1 | None = None
|
|
125
|
+
Services: ServicesV1 | None = None
|
|
126
|
+
ConsumerGoods: ConsumerGoodsV1 | None = None
|
|
127
|
+
FoodBeverage: FoodBeverageV1 | None = None
|
|
128
|
+
|
|
129
|
+
OtherElectricalEquipment: OtherElectricalEquipmentV1 | None = pyd.Field(
|
|
130
|
+
default=None,
|
|
131
|
+
deprecated="Specs.OtherElectricalEquipment is deprecated. Use ElectricalV1.OtherElectricalEquipment instead.",
|
|
132
|
+
)
|
|
133
|
+
"""
|
|
134
|
+
Specs.OtherElectricalEquipment is deprecated. Use ElectricalV1.OtherElectricalEquipment instead.
|
|
135
|
+
"""
|
|
114
136
|
|
|
115
137
|
# historical backward-compatible specs
|
|
116
138
|
concrete: ConcreteOldSpec | None = None
|
|
@@ -298,10 +298,16 @@ class ElectricalConduitV1(BaseOpenEpdHierarchicalSpec, ConduitMixin):
|
|
|
298
298
|
_EXT_VERSION = "1.1"
|
|
299
299
|
|
|
300
300
|
|
|
301
|
+
class OtherElectricalEquipmentV1(BaseOpenEpdHierarchicalSpec):
|
|
302
|
+
"""Other Electrical Equipment."""
|
|
303
|
+
|
|
304
|
+
_EXT_VERSION = "1.0"
|
|
305
|
+
|
|
306
|
+
|
|
301
307
|
class ElectricalV1(BaseOpenEpdHierarchicalSpec):
|
|
302
308
|
"""Electric power and equipment."""
|
|
303
309
|
|
|
304
|
-
_EXT_VERSION = "1.
|
|
310
|
+
_EXT_VERSION = "1.2"
|
|
305
311
|
|
|
306
312
|
# Nested specs:
|
|
307
313
|
ElectricalPowerStorage: ElectricalPowerStorageV1 | None = None
|
|
@@ -310,3 +316,4 @@ class ElectricalV1(BaseOpenEpdHierarchicalSpec):
|
|
|
310
316
|
ElectricPower: ElectricPowerV1 | None = None
|
|
311
317
|
Lighting: LightingV1 | None = None
|
|
312
318
|
ElectricalConduit: ElectricalConduitV1 | None = None
|
|
319
|
+
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,7 @@
|
|
|
13
13
|
# See the License for the specific language governing permissions and
|
|
14
14
|
# limitations under the License.
|
|
15
15
|
#
|
|
16
|
+
from openepd.compat.pydantic import pyd
|
|
16
17
|
from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
|
|
17
18
|
|
|
18
19
|
|
|
@@ -60,8 +61,27 @@ class UnsupportedV1(BaseOpenEpdHierarchicalSpec):
|
|
|
60
61
|
|
|
61
62
|
# Nested specs:
|
|
62
63
|
CleaningProducts: CleaningProductsV1 | None = None
|
|
64
|
+
|
|
65
|
+
Clothing: ClothingV1 | None = pyd.Field(
|
|
66
|
+
default=None, deprecated="UnsupportedV1.Clothing is deprecated. Use TextileProductsV1.Clothing instead."
|
|
67
|
+
)
|
|
68
|
+
"""
|
|
69
|
+
UnsupportedV1.Clothing is deprecated. Use TextileProductsV1.Clothing instead.
|
|
70
|
+
"""
|
|
71
|
+
FoodBeverage: FoodBeverageV1 | None = pyd.Field(
|
|
72
|
+
default=None, deprecated="UnsupportedV1.FoodBeverage is deprecated. Use Specs.FoodBeverage instead."
|
|
73
|
+
)
|
|
74
|
+
"""
|
|
75
|
+
UnsupportedV1.FoodBeverage is deprecated. Use TextileProductsV1.FoodBeverage instead.
|
|
76
|
+
"""
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
class TextileProductsV1(BaseOpenEpdHierarchicalSpec):
|
|
80
|
+
"""Products to be worn by humans, and materials intended to manufacture them. Includes most of WS HS Sections XI, XII."""
|
|
81
|
+
|
|
82
|
+
_EXT_VERSION = "1.0"
|
|
83
|
+
|
|
63
84
|
Clothing: ClothingV1 | None = None
|
|
64
|
-
FoodBeverage: FoodBeverageV1 | None = None
|
|
65
85
|
|
|
66
86
|
|
|
67
87
|
class CopperV1(BaseOpenEpdHierarchicalSpec):
|
|
@@ -106,10 +126,22 @@ class ZincV1(BaseOpenEpdHierarchicalSpec):
|
|
|
106
126
|
_EXT_VERSION = "1.0"
|
|
107
127
|
|
|
108
128
|
|
|
129
|
+
class OtherPaperPlasticV1(BaseOpenEpdHierarchicalSpec):
|
|
130
|
+
"""Other products primarily made of plastic or paper. Includes WCO HS sections VII and X."""
|
|
131
|
+
|
|
132
|
+
_EXT_VERSION = "1.0"
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
class OtherMineralMetalV1(BaseOpenEpdHierarchicalSpec):
|
|
136
|
+
"""Base minerals, metals, materials, and products made primarily of them not otherwise classified. Includes most of WCO HS Section XV."""
|
|
137
|
+
|
|
138
|
+
_EXT_VERSION = "1.0"
|
|
139
|
+
|
|
140
|
+
|
|
109
141
|
class OtherMaterialsV1(BaseOpenEpdHierarchicalSpec):
|
|
110
142
|
"""Broad category of materials not yet classified."""
|
|
111
143
|
|
|
112
|
-
_EXT_VERSION = "1.
|
|
144
|
+
_EXT_VERSION = "1.1"
|
|
113
145
|
|
|
114
146
|
# Nested specs:
|
|
115
147
|
TransportationInfrastructure: TransportationInfrastructureV1 | None = None
|
|
@@ -121,3 +153,5 @@ class OtherMaterialsV1(BaseOpenEpdHierarchicalSpec):
|
|
|
121
153
|
Profiles: ProfilesV1 | None = None
|
|
122
154
|
Unknown: UnknownV1 | None = None
|
|
123
155
|
Zinc: ZincV1 | None = None
|
|
156
|
+
OtherPaperPlastic: OtherPaperPlasticV1 | None = None
|
|
157
|
+
OtherMineralMetal: OtherMineralMetalV1 | None = None
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
openepd/__init__.py,sha256=fhxfEyEurLvSfvQci-vb3njzl_lvhcLXiZrecCOaMU8,794
|
|
2
|
-
openepd/__version__.py,sha256=
|
|
2
|
+
openepd/__version__.py,sha256=RP90yLyA0fimq3bkON2BWP9vB79LaYyadZfDCC33-SA,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=_eZt_jGVL1a3p9cr-EF39Ve9Vl5sB8zwzTc_slnRL50,7975
|
|
@@ -57,12 +57,12 @@ openepd/model/lcia.py,sha256=PdaSZz02PMBJl_t2B_dmkcbzIFjA7iACrWj1fllHfw0,26230
|
|
|
57
57
|
openepd/model/org.py,sha256=zxBt-c2f1nhJUqygUzhsq6AEEwfNiYGquhgYvcUfvSo,7771
|
|
58
58
|
openepd/model/pcr.py,sha256=7nf6ATofdrlPt81vdU6p0E8n_ftFEuCEIKxtYlFwclw,5476
|
|
59
59
|
openepd/model/specs/README.md,sha256=UGhSiFJ9hOxT1mZl-5ZrhkOrPKf1W_gcu5CI9hzV7LU,2430
|
|
60
|
-
openepd/model/specs/__init__.py,sha256=
|
|
60
|
+
openepd/model/specs/__init__.py,sha256=YbyiLnQRQIX9mEdfQRVP3Rp1q3iNwujQMBbDK2-CYdM,3836
|
|
61
61
|
openepd/model/specs/asphalt.py,sha256=eHhcITbBrNYR5N6x4Q2BxpsR64BR9OkjJ4bvPRYOqMg,3411
|
|
62
62
|
openepd/model/specs/base.py,sha256=10IDyRFKQgFnyIPSqpeayP8Og1BDgs1EepXX5dyCMM4,2674
|
|
63
63
|
openepd/model/specs/concrete.py,sha256=D9jbhZDtTXNBoAgljQBPxsmGsMvLSIAP5H53ZYiXcGI,5336
|
|
64
64
|
openepd/model/specs/enums.py,sha256=6vNIDqt2kI-JKp9EBP9vhis935tfAS31znZ7v7LHb8s,63083
|
|
65
|
-
openepd/model/specs/range/__init__.py,sha256=
|
|
65
|
+
openepd/model/specs/range/__init__.py,sha256=iYCY7RWHntcuE_AbVunU7jft_EFDG0tqvBiITndGRhs,5494
|
|
66
66
|
openepd/model/specs/range/accessories.py,sha256=hZYz8mvAqrfLFiOIZ9qQZ59zmEiu0xE61Ko9cQ7NSKU,2498
|
|
67
67
|
openepd/model/specs/range/aggregates.py,sha256=udVbsYc1Lyrd6a4YZBGNDQ3sBi-L3WLub_e1ecq7U-Q,2549
|
|
68
68
|
openepd/model/specs/range/aluminium.py,sha256=Z3laZKXoPtfmOLLr4c4uf7Z-8TNmfz51X-_yd7GQIj8,2745
|
|
@@ -73,7 +73,7 @@ openepd/model/specs/range/cladding.py,sha256=r7M2lc77NR2GXBkgkqRzskQ6TdZeMd7pEEm
|
|
|
73
73
|
openepd/model/specs/range/cmu.py,sha256=Sv4yw6121LSgYhW4J82xKsIi1KucaeDVF7xmpZtoCt8,1833
|
|
74
74
|
openepd/model/specs/range/concrete.py,sha256=CwRJ_0lJ6zRFwaiom3jrp50BSTiB9mIGL3ujcygZwfs,7528
|
|
75
75
|
openepd/model/specs/range/conveying_equipment.py,sha256=_rqJ9Y3kkP8E6-vkZb6Pih3JnR1nUESJoOLf-LT--sc,3176
|
|
76
|
-
openepd/model/specs/range/electrical.py,sha256=
|
|
76
|
+
openepd/model/specs/range/electrical.py,sha256=s8X-byhQCD68c_lHqAZ4hWPBSY6Or67p2rM-OIVOA1M,12100
|
|
77
77
|
openepd/model/specs/range/electrical_transmission_and_distribution_equipment.py,sha256=xDdyLj6oJRmdybq7W91MtgE80FDpaG6ii5hE921aRGQ,2525
|
|
78
78
|
openepd/model/specs/range/electricity.py,sha256=yn_S25C_tZqseb8hiJ1yiHszu2mQ49FOFWWCqNpOBY0,997
|
|
79
79
|
openepd/model/specs/range/exterior_improvements.py,sha256=dcgX9Tv4U_Zki9nGcy6ykvyesDYAtS_CuD-7nf17kMQ,1736
|
|
@@ -89,9 +89,9 @@ openepd/model/specs/range/mechanical_insulation.py,sha256=S2-NkFVkjLmn_dk3gsG8C2
|
|
|
89
89
|
openepd/model/specs/range/mixins/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dvvtd4,620
|
|
90
90
|
openepd/model/specs/range/mixins/access_flooring_mixin.py,sha256=JEcvlmKv3R5dVIM4X4ILH43WlMwF6FnZ4-_s2qU-MIM,2382
|
|
91
91
|
openepd/model/specs/range/network_infrastructure.py,sha256=aqXEIGqFy0gNCM_ftd3J6aT3FZf9JlT0SBOImhdkTg0,8498
|
|
92
|
+
openepd/model/specs/range/non_construction.py,sha256=PDJn1QKQR9wHYr-KtWIxji-41IKFSeMZUS1fSjy4QGU,1664
|
|
92
93
|
openepd/model/specs/range/openings.py,sha256=4MeNkbMAhtcGbiG5lxHCSRSdJ4F42uBMSXp5XJFODj4,15590
|
|
93
|
-
openepd/model/specs/range/
|
|
94
|
-
openepd/model/specs/range/other_materials.py,sha256=RHusAyExYl9n1BDiOFDq2_znEn3MXGxEkunb3BjiC2U,4495
|
|
94
|
+
openepd/model/specs/range/other_materials.py,sha256=EAKHR9VJAkoqHL0FL2x-7PBvBxDD07drqoVLhBlaYzw,5823
|
|
95
95
|
openepd/model/specs/range/plumbing.py,sha256=jQKrKYGDR33uh3ffo6uVyt3xuSmexkkelfNh_-omNCg,5342
|
|
96
96
|
openepd/model/specs/range/precast_concrete.py,sha256=nn1U1XwKqqzY1cOPP3KqHZMJq4Ut9RAox4SMVYBa5B8,3763
|
|
97
97
|
openepd/model/specs/range/sheathing.py,sha256=tATL6dzKTdN0rUKZRzZd779dLhKdEavL5Bjybnt2MjU,3395
|
|
@@ -100,7 +100,7 @@ openepd/model/specs/range/thermal_moisture_protection.py,sha256=aUpStISG2snc8aZ7
|
|
|
100
100
|
openepd/model/specs/range/utility_piping.py,sha256=mQTrKbMTES_0Yta9DBnKehsmA2BAN_zYF_uPZCTKLPo,2665
|
|
101
101
|
openepd/model/specs/range/wood.py,sha256=ZMStFsFOw5d6tCL2P7kksBnlYhwfvWJBZqoAdqSIUDg,6917
|
|
102
102
|
openepd/model/specs/range/wood_joists.py,sha256=NCBHL0gdKwdKlGCP6up_Royl9BtWUUeuFfS1r2vIZ30,1785
|
|
103
|
-
openepd/model/specs/singular/__init__.py,sha256=
|
|
103
|
+
openepd/model/specs/singular/__init__.py,sha256=MY2G6zLbJOQuKHKBGflo6BaUcB8rG-UGk-Cc_IHDR5A,12232
|
|
104
104
|
openepd/model/specs/singular/accessories.py,sha256=xcuSJrG84oTm_w76_wlv_sItfK36gSyDmUD2TnpZnVE,2013
|
|
105
105
|
openepd/model/specs/singular/aggregates.py,sha256=oSfArxvLUj63w_U0tZViRyiOpMRRjE72ncy2BimKxco,2934
|
|
106
106
|
openepd/model/specs/singular/aluminium.py,sha256=7Z3WmuW22o92cPHfR6X_OBSoer0V5llwiNdQmWgKTx8,2408
|
|
@@ -115,7 +115,7 @@ openepd/model/specs/singular/conveying_equipment.py,sha256=AK_KdGyBDh0_Dl3YCkIyf
|
|
|
115
115
|
openepd/model/specs/singular/deprecated/__init__.py,sha256=f8I04fHO5QWpNtorrCgbUXz4r0B0zgsk8zDUfXu_i80,2635
|
|
116
116
|
openepd/model/specs/singular/deprecated/concrete.py,sha256=swSOfViIvy7z923C6uHBcIZrv_JRMv7wSJHpg9PGAJg,5265
|
|
117
117
|
openepd/model/specs/singular/deprecated/steel.py,sha256=0A3Y50XpLsPt105t_H8BzByaDUbLoX1o_QIr566JfB4,3499
|
|
118
|
-
openepd/model/specs/singular/electrical.py,sha256=
|
|
118
|
+
openepd/model/specs/singular/electrical.py,sha256=UOXVL6ri5b05O1-5YB1us-8QeBlHrTeRr21qjFrH6TM,11313
|
|
119
119
|
openepd/model/specs/singular/electrical_transmission_and_distribution_equipment.py,sha256=oZYyHgnXn9RH3YzltUEDiiQKrin2mvMlTgC3OhxV7DY,1978
|
|
120
120
|
openepd/model/specs/singular/electricity.py,sha256=f1cJ9eklNUf97khCIZiT5-z8V_TbOcvH2me_1UTQVrE,823
|
|
121
121
|
openepd/model/specs/singular/exterior_improvements.py,sha256=tf9lHxb5Mj9Sf3WGjR1wq-mKcyqlvvVKpZG2W6cLcxo,1711
|
|
@@ -132,9 +132,9 @@ openepd/model/specs/singular/mixins/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_s
|
|
|
132
132
|
openepd/model/specs/singular/mixins/access_flooring_mixin.py,sha256=z_e5TYK2dtRMz--GrWQDkyyDEM0DmERZZO9V-EzAs1o,2915
|
|
133
133
|
openepd/model/specs/singular/mixins/conduit_mixin.py,sha256=tj6p-MF84rg4LGxXPC65uMvmn6NlxmATuloe4TcuQdk,1928
|
|
134
134
|
openepd/model/specs/singular/network_infrastructure.py,sha256=eB3p1zu1u15Ly5iuyyJ4xl3Z1GuBCRVU18Wpz8FWZrg,8521
|
|
135
|
+
openepd/model/specs/singular/non_construction.py,sha256=VW_dP5I8AUkwa923d2r9X8S78k6OUA5rU0UAypUX8t8,1634
|
|
135
136
|
openepd/model/specs/singular/openings.py,sha256=IoLBp003qvWZOeTeIPtVPcq4AXdY3ZSSzRK10mnnJac,19183
|
|
136
|
-
openepd/model/specs/singular/
|
|
137
|
-
openepd/model/specs/singular/other_materials.py,sha256=_00_fCPn7G_-HVKC1cQcNvBDf4CtXFLOGvYLDJtL5ZA,3498
|
|
137
|
+
openepd/model/specs/singular/other_materials.py,sha256=iD_AeC8vHXAQuvw62TrVOyoRS6uy5LFb_2PSODDn2hk,4759
|
|
138
138
|
openepd/model/specs/singular/plumbing.py,sha256=fHmKyy1aQxu8NZ3RTwxuA0CCERMgwVUdMA74kMDVc8o,4568
|
|
139
139
|
openepd/model/specs/singular/precast_concrete.py,sha256=W2tKf0vOnAdfeGc1n7Pk8yx9jy44afdFB0cbwHjw1HI,7327
|
|
140
140
|
openepd/model/specs/singular/sheathing.py,sha256=dfBSGElsJ-suj3WH7CZx5k3_v5E5IHVDOscwRI5yghE,3709
|
|
@@ -156,7 +156,7 @@ openepd/utils/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dvvtd4,620
|
|
|
156
156
|
openepd/utils/functional.py,sha256=sm7od2_UE-cNToezBlwFQ1TCUJub1tz6VykA1X8XH-I,1274
|
|
157
157
|
openepd/utils/mapping/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dvvtd4,620
|
|
158
158
|
openepd/utils/mapping/common.py,sha256=WphCzwQQlzX11tUk88Ubyq3QPBLvH0tBPSIuH0kmiug,7339
|
|
159
|
-
openepd-6.
|
|
160
|
-
openepd-6.
|
|
161
|
-
openepd-6.
|
|
162
|
-
openepd-6.
|
|
159
|
+
openepd-6.31.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
160
|
+
openepd-6.31.0.dist-info/METADATA,sha256=sPFX7iPzgiEauVaalAsCm0JvfOq9naQKVhi_Xt8npuM,9827
|
|
161
|
+
openepd-6.31.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
162
|
+
openepd-6.31.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
|