openepd 7.11.0__py3-none-any.whl → 7.12.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/common.py +1 -1
- openepd/model/specs/range/__init__.py +18 -2
- openepd/model/specs/range/non_construction.py +52 -0
- openepd/model/specs/range/other_materials.py +44 -2
- openepd/model/specs/singular/__init__.py +18 -2
- openepd/model/specs/singular/non_construction.py +52 -0
- openepd/model/specs/singular/other_materials.py +45 -2
- {openepd-7.11.0.dist-info → openepd-7.12.0.dist-info}/METADATA +1 -1
- {openepd-7.11.0.dist-info → openepd-7.12.0.dist-info}/RECORD +12 -10
- {openepd-7.11.0.dist-info → openepd-7.12.0.dist-info}/LICENSE +0 -0
- {openepd-7.11.0.dist-info → openepd-7.12.0.dist-info}/WHEEL +0 -0
openepd/__version__.py
CHANGED
openepd/model/common.py
CHANGED
@@ -87,7 +87,7 @@ class Measurement(BaseOpenEpdSchema):
|
|
87
87
|
"""A scientific value with units and uncertainty."""
|
88
88
|
|
89
89
|
mean: float = pydantic.Field(description="Mean (expected) value of the measurement")
|
90
|
-
unit: str | None = pydantic.Field(description="Measurement unit")
|
90
|
+
unit: str | None = pydantic.Field(description="Measurement unit", default=None)
|
91
91
|
rsd: pydantic.PositiveFloat | None = pydantic.Field(
|
92
92
|
description="Relative standard deviation, i.e. standard_deviation/mean",
|
93
93
|
default=None,
|
@@ -44,9 +44,17 @@ from .material_handling import MaterialHandlingRangeV1
|
|
44
44
|
from .mechanical import MechanicalRangeV1
|
45
45
|
from .mechanical_insulation import MechanicalInsulationRangeV1
|
46
46
|
from .network_infrastructure import NetworkInfrastructureRangeV1
|
47
|
+
from .non_construction import (
|
48
|
+
ChemicalsRangeV1,
|
49
|
+
ConsumerGoodsRangeV1,
|
50
|
+
ElectricityAndFuelRangeV1,
|
51
|
+
MachineryAndEquipmentRangeV1,
|
52
|
+
ServicesRangeV1,
|
53
|
+
VehiclesRangeV1,
|
54
|
+
)
|
47
55
|
from .openings import OpeningsRangeV1
|
48
56
|
from .other_electrical_equipment import OtherElectricalEquipmentRangeV1
|
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
|
@@ -101,3 +109,11 @@ class SpecsRange(BaseOpenEpdHierarchicalSpec):
|
|
101
109
|
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
|
@@ -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
|
@@ -56,9 +56,17 @@ 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
68
|
from openepd.model.specs.singular.other_electrical_equipment import OtherElectricalEquipmentV1
|
61
|
-
from openepd.model.specs.singular.other_materials import OtherMaterialsV1
|
69
|
+
from openepd.model.specs.singular.other_materials import FoodBeverageV1, OtherMaterialsV1, TextileProductsV1
|
62
70
|
from openepd.model.specs.singular.plumbing import PlumbingV1
|
63
71
|
from openepd.model.specs.singular.precast_concrete import PrecastConcreteV1
|
64
72
|
from openepd.model.specs.singular.sheathing import SheathingV1
|
@@ -79,7 +87,7 @@ class Specs(BaseOpenEpdHierarchicalSpec):
|
|
79
87
|
SteelOldSpec,
|
80
88
|
]
|
81
89
|
|
82
|
-
_EXT_VERSION = "1.
|
90
|
+
_EXT_VERSION = "1.1"
|
83
91
|
|
84
92
|
# Nested specs:
|
85
93
|
CMU: CMUV1 | None = None
|
@@ -117,6 +125,14 @@ class Specs(BaseOpenEpdHierarchicalSpec):
|
|
117
125
|
OtherElectricalEquipment: OtherElectricalEquipmentV1 | None = None
|
118
126
|
WoodJoists: WoodJoistsV1 | None = None
|
119
127
|
ExteriorImprovements: ExteriorImprovementsV1 | None = None
|
128
|
+
TextileProducts: TextileProductsV1 | None = None
|
129
|
+
Chemicals: ChemicalsV1 | None = None
|
130
|
+
ElectricityAndFuel: ElectricityAndFuelV1 | None = None
|
131
|
+
Vehicles: VehiclesV1 | None = None
|
132
|
+
MachineryAndEquipment: MachineryAndEquipmentV1 | None = None
|
133
|
+
Services: ServicesV1 | None = None
|
134
|
+
ConsumerGoods: ConsumerGoodsV1 | None = None
|
135
|
+
FoodBeverage: FoodBeverageV1 | None = None
|
120
136
|
|
121
137
|
# historical backward-compatible specs
|
122
138
|
concrete: ConcreteOldSpec | 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=p1iAdxzRKk4JP5O5NZZ9ferstcAaAoEObUavhFIQqXU,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
|
@@ -43,7 +43,7 @@ openepd/m49/utils.py,sha256=0UvdtC9gtvRA5WT_hJDIuQR0RSrnx-S34wwwBRM_tsM,7807
|
|
43
43
|
openepd/model/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dvvtd4,620
|
44
44
|
openepd/model/base.py,sha256=4D8BaSoNeY8RZfjkmJOSyfg0B34dKzM76lZbQT9AIXg,13622
|
45
45
|
openepd/model/category.py,sha256=iyzzAsiVwW4zJ61oYsm9Sy-sEBA71-aMFXcJP1Y-dPI,1734
|
46
|
-
openepd/model/common.py,sha256=
|
46
|
+
openepd/model/common.py,sha256=r6VbqOaMAAqEEbXJ0l-_kLDFQJZW_qv5XdZFyOFEFW8,15016
|
47
47
|
openepd/model/declaration.py,sha256=ryB0QmbdtufUEwUDZqzudlEAnJ_-4wPR9dwfC8i4zUc,15785
|
48
48
|
openepd/model/epd.py,sha256=cS3ZT_72v0gFcEhuDQrF_Zs8-Cob3FjyipUbBpc-xFM,12760
|
49
49
|
openepd/model/factory.py,sha256=UWSGpfCr3GiMTP4rzBkwqxzbXB6GKZ_5Okb1Dqa_4aA,2701
|
@@ -59,7 +59,7 @@ openepd/model/specs/asphalt.py,sha256=Vj9q6ZDwl6Mv8XX_PWVuqVwDIzQ7MEIamysF5cmYte
|
|
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=MlECuiVIB3QBrcc-J_iQgqztD-Kp9mMFiacQoDzKliA,5202
|
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
|
@@ -86,9 +86,10 @@ 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
91
|
openepd/model/specs/range/other_electrical_equipment.py,sha256=H4tZHcHyR2uUYHn-bQfLC6hR4tynVp_7EJbiI-YpK7Y,1001
|
91
|
-
openepd/model/specs/range/other_materials.py,sha256=
|
92
|
+
openepd/model/specs/range/other_materials.py,sha256=RaLM3TrQ_woHJpYUug6XapSZmWfzYbkFlULegWfBab4,5962
|
92
93
|
openepd/model/specs/range/plumbing.py,sha256=pjdIOvQAat-8e0zqJM7gs30h131mqryU5uCGOdeTRaE,5382
|
93
94
|
openepd/model/specs/range/precast_concrete.py,sha256=i766QYGjnl5_1Ip_6_-x1QpCXSybM0bjN4ESq2njIQ0,3820
|
94
95
|
openepd/model/specs/range/sheathing.py,sha256=FOosFJ8fsyqQnlLTgEqxM4xzDtiYP2jQ7dCf2T4K1O4,3446
|
@@ -97,7 +98,7 @@ openepd/model/specs/range/thermal_moisture_protection.py,sha256=cdr610ZdOlbd3LYz
|
|
97
98
|
openepd/model/specs/range/utility_piping.py,sha256=doRcQRfBWvHX7FDDYk-bEU5rVCS_vjZ_5gKslI0xR7Y,2671
|
98
99
|
openepd/model/specs/range/wood.py,sha256=WIZOSixS1hlmI66XpL9PhVRZ3ST423A_ihCz2CEbuCk,6914
|
99
100
|
openepd/model/specs/range/wood_joists.py,sha256=PVGJZPdaI685rUI6TS3MZrAFkeMckFGpCYTNJLBr6IM,1786
|
100
|
-
openepd/model/specs/singular/__init__.py,sha256=
|
101
|
+
openepd/model/specs/singular/__init__.py,sha256=9qs3oyW5-z9Qq6BfCzaR9WzoNtT0DgOrGHVesswSyUY,12225
|
101
102
|
openepd/model/specs/singular/accessories.py,sha256=xcuSJrG84oTm_w76_wlv_sItfK36gSyDmUD2TnpZnVE,2013
|
102
103
|
openepd/model/specs/singular/aggregates.py,sha256=n_AbZK6TJHJ6boyMz6AyikUkMiNlq8G_NOcqEy_A-Sg,2975
|
103
104
|
openepd/model/specs/singular/aluminium.py,sha256=rOFEzIVvR2t0QGLN3Zk_Pi_m4v2dMU4PoDQN1hULMn4,2524
|
@@ -129,9 +130,10 @@ openepd/model/specs/singular/mixins/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_s
|
|
129
130
|
openepd/model/specs/singular/mixins/access_flooring_mixin.py,sha256=gM5H6lTjj2eytYnzt-4PaJ_dc8wNH_gJzBazJb83j5E,3083
|
130
131
|
openepd/model/specs/singular/mixins/conduit_mixin.py,sha256=H5rbXIy3lpiU_Rub3_f7cECtQE2odu1-nIKuRjtO6ts,1959
|
131
132
|
openepd/model/specs/singular/network_infrastructure.py,sha256=QGMIFzexHH94phkFw7iYl-fTZ_514dwYgvC-2sHjOZw,9316
|
133
|
+
openepd/model/specs/singular/non_construction.py,sha256=VW_dP5I8AUkwa923d2r9X8S78k6OUA5rU0UAypUX8t8,1634
|
132
134
|
openepd/model/specs/singular/openings.py,sha256=8XI9W-4h9oK1_hWNVOzNwvWxIZdAEze0A8ach5hThSU,19794
|
133
135
|
openepd/model/specs/singular/other_electrical_equipment.py,sha256=FX7p4rMuUbTrz1yDwKkS-Z6odohoq-zCw6SU3Kw5ISs,814
|
134
|
-
openepd/model/specs/singular/other_materials.py,sha256=
|
136
|
+
openepd/model/specs/singular/other_materials.py,sha256=5KbH-db7-FpHiinTRcrGLcIDDkn790a3Mem5ZPpwcsA,4908
|
135
137
|
openepd/model/specs/singular/plumbing.py,sha256=dP6r7xy2yeP8ICEBN79CfJqyDiuwpTtDnURBfWmFWPs,4639
|
136
138
|
openepd/model/specs/singular/precast_concrete.py,sha256=25vn5UxiQbhsNisqBF9_GYASMl3D1iuDWxfnV5HOV4k,7567
|
137
139
|
openepd/model/specs/singular/sheathing.py,sha256=J1lHRo0eTcWGhqwLHGnEZq3SHJkVCvSedvg2lGuwDyo,3995
|
@@ -154,7 +156,7 @@ openepd/utils/mapping/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dv
|
|
154
156
|
openepd/utils/mapping/common.py,sha256=hxfN-WW2WLwE_agQzf_mhvz6OHq5WWlr24uZ1S81k4Y,8426
|
155
157
|
openepd/utils/mapping/geography.py,sha256=1_-dvLk11Hqn-K58yUI5pQ5X5gsnJPFlFT7JK2Rdoeg,2396
|
156
158
|
openepd/utils/markdown.py,sha256=RQmudPhb4QU1I4-S-VV2WFbzzq2Po09kbpjjKbwkA9E,1830
|
157
|
-
openepd-7.
|
158
|
-
openepd-7.
|
159
|
-
openepd-7.
|
160
|
-
openepd-7.
|
159
|
+
openepd-7.12.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
160
|
+
openepd-7.12.0.dist-info/METADATA,sha256=3VZcyUfh9My80cp8CWOJOG2dvkxAs9Cv2AT3D2xh9TU,9811
|
161
|
+
openepd-7.12.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
162
|
+
openepd-7.12.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|