openepd 3.1.4__py3-none-any.whl → 3.3.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/generated/__init__.py +19 -0
- openepd/model/specs/generated/accessories.py +11 -6
- openepd/model/specs/generated/aluminium.py +8 -5
- openepd/model/specs/generated/asphalt.py +1 -1
- openepd/model/specs/generated/bulk_materials.py +1 -1
- openepd/model/specs/generated/cast_decks_and_underlayment.py +6 -1
- openepd/model/specs/generated/cladding.py +17 -13
- openepd/model/specs/generated/cmu.py +1 -1
- openepd/model/specs/generated/conveying_equipment.py +2 -2
- openepd/model/specs/generated/electrical.py +40 -27
- openepd/model/specs/generated/electrical_transmission_and_distribution_equipment.py +9 -5
- openepd/model/specs/generated/electricity.py +1 -1
- openepd/model/specs/generated/enums.py +2 -0
- openepd/model/specs/generated/finishes.py +47 -25
- openepd/model/specs/generated/fire_and_smoke_protection.py +27 -5
- openepd/model/specs/generated/furnishings.py +9 -9
- openepd/model/specs/generated/grouting.py +6 -1
- openepd/model/specs/generated/manufacturing_inputs.py +31 -7
- openepd/model/specs/generated/masonry.py +4 -4
- openepd/model/specs/generated/material_handling.py +10 -2
- openepd/model/specs/generated/mechanical.py +39 -14
- openepd/model/specs/generated/mechanical_insulation.py +5 -1
- openepd/model/specs/generated/network_infrastructure.py +20 -7
- openepd/model/specs/generated/other_electrical_equipment.py +1 -1
- openepd/model/specs/generated/other_materials.py +16 -12
- openepd/model/specs/generated/plumbing.py +18 -13
- openepd/model/specs/generated/precast_concrete.py +146 -8
- openepd/model/specs/generated/sheathing.py +17 -4
- openepd/model/specs/generated/thermal_moisture_protection.py +52 -21
- openepd/model/specs/generated/utility_piping.py +13 -3
- openepd/model/specs/generated/wood.py +35 -13
- openepd/model/specs/generated/wood_joists.py +6 -1
- {openepd-3.1.4.dist-info → openepd-3.3.0.dist-info}/METADATA +1 -1
- {openepd-3.1.4.dist-info → openepd-3.3.0.dist-info}/RECORD +37 -36
- {openepd-3.1.4.dist-info → openepd-3.3.0.dist-info}/LICENSE +0 -0
- {openepd-3.1.4.dist-info → openepd-3.3.0.dist-info}/WHEEL +0 -0
@@ -32,19 +32,27 @@ from openepd.model.validation.quantity import LengthMmStr, PressureMPaStr
|
|
32
32
|
|
33
33
|
|
34
34
|
class BituminousRoofingV1(BaseOpenEpdHierarchicalSpec):
|
35
|
-
"""
|
35
|
+
"""
|
36
|
+
Bituminous roofing.
|
37
|
+
|
38
|
+
Premanufactured membrane roofing sheets consisting of asphalt, reinforcing layers, and in some cases a surfacing.
|
39
|
+
"""
|
36
40
|
|
37
41
|
_EXT_VERSION = "1.0"
|
38
42
|
|
39
43
|
|
40
44
|
class SinglePlyEPDMV1(BaseOpenEpdHierarchicalSpec):
|
41
|
-
"""
|
45
|
+
"""Ethylene propylene diene monomer (EPDM) rubber membrane."""
|
42
46
|
|
43
47
|
_EXT_VERSION = "1.0"
|
44
48
|
|
45
49
|
|
46
50
|
class SinglePlyKEEV1(BaseOpenEpdHierarchicalSpec):
|
47
|
-
"""
|
51
|
+
"""
|
52
|
+
Ketone Ethylene Ester (KEE) roof membranes.
|
53
|
+
|
54
|
+
Consist of PVC resin and KEE plasticizer, with KEE exceeding 50% of the polymer content by weight.
|
55
|
+
"""
|
48
56
|
|
49
57
|
_EXT_VERSION = "1.0"
|
50
58
|
|
@@ -56,37 +64,37 @@ class SinglePlyOtherV1(BaseOpenEpdHierarchicalSpec):
|
|
56
64
|
|
57
65
|
|
58
66
|
class SinglePlyPolyurethaneV1(BaseOpenEpdHierarchicalSpec):
|
59
|
-
"""
|
67
|
+
"""Polyurethane liquid for flat roof waterproofing."""
|
60
68
|
|
61
69
|
_EXT_VERSION = "1.0"
|
62
70
|
|
63
71
|
|
64
72
|
class SinglePlyPVCV1(BaseOpenEpdHierarchicalSpec):
|
65
|
-
"""
|
73
|
+
"""Polyvinyl chloride (PVC) thermoplastic membrane."""
|
66
74
|
|
67
75
|
_EXT_VERSION = "1.0"
|
68
76
|
|
69
77
|
|
70
78
|
class SinglePlyTPOV1(BaseOpenEpdHierarchicalSpec):
|
71
|
-
"""
|
79
|
+
"""Thermoplastic Polyolefin (TPO) membrane."""
|
72
80
|
|
73
81
|
_EXT_VERSION = "1.0"
|
74
82
|
|
75
83
|
|
76
84
|
class BlanketInsulationV1(BaseOpenEpdHierarchicalSpec):
|
77
|
-
"""
|
85
|
+
"""Non-rigid insulation batts, blankets, and rolls."""
|
78
86
|
|
79
87
|
_EXT_VERSION = "1.0"
|
80
88
|
|
81
89
|
|
82
90
|
class BlownInsulationV1(BaseOpenEpdHierarchicalSpec):
|
83
|
-
"""
|
91
|
+
"""Loose-fill insulation for blow-in or closed cavity applications."""
|
84
92
|
|
85
93
|
_EXT_VERSION = "1.0"
|
86
94
|
|
87
95
|
|
88
96
|
class BoardInsulationV1(BaseOpenEpdHierarchicalSpec):
|
89
|
-
"""
|
97
|
+
"""Rigid insulation products including rigid foams, wood fiberboard insulation, and rigid mineral wool boards."""
|
90
98
|
|
91
99
|
_EXT_VERSION = "1.0"
|
92
100
|
|
@@ -95,7 +103,7 @@ class BoardInsulationV1(BaseOpenEpdHierarchicalSpec):
|
|
95
103
|
|
96
104
|
|
97
105
|
class FoamedInPlaceV1(BaseOpenEpdHierarchicalSpec):
|
98
|
-
"""
|
106
|
+
"""Open and closed cell spray foam insulation."""
|
99
107
|
|
100
108
|
_EXT_VERSION = "1.0"
|
101
109
|
|
@@ -104,19 +112,28 @@ class FoamedInPlaceV1(BaseOpenEpdHierarchicalSpec):
|
|
104
112
|
|
105
113
|
|
106
114
|
class SprayedInsulationV1(BaseOpenEpdHierarchicalSpec):
|
107
|
-
"""
|
115
|
+
"""
|
116
|
+
Spray-on insulation, such as spray-on cellulose.
|
117
|
+
|
118
|
+
Foaming sprays are categorized separately under foamed-in-place.
|
119
|
+
"""
|
108
120
|
|
109
121
|
_EXT_VERSION = "1.0"
|
110
122
|
|
111
123
|
|
112
124
|
class AirBarriersV1(BaseOpenEpdHierarchicalSpec):
|
113
|
-
"""Air
|
125
|
+
"""Air Infiltration Barrier."""
|
114
126
|
|
115
127
|
_EXT_VERSION = "1.0"
|
116
128
|
|
117
129
|
|
118
130
|
class MembraneRoofingV1(BaseOpenEpdHierarchicalSpec):
|
119
|
-
"""
|
131
|
+
"""
|
132
|
+
Membrane roofing.
|
133
|
+
|
134
|
+
Built-up bituminous, modified bituminous, elastomeric, thermoplastic, fluid-applied, and hot-applied rubberized
|
135
|
+
asphalt membrane roofing.
|
136
|
+
"""
|
120
137
|
|
121
138
|
_EXT_VERSION = "1.0"
|
122
139
|
|
@@ -141,7 +158,7 @@ class MembraneRoofingV1(BaseOpenEpdHierarchicalSpec):
|
|
141
158
|
|
142
159
|
|
143
160
|
class InsulationV1(BaseOpenEpdHierarchicalSpec):
|
144
|
-
"""
|
161
|
+
"""Thermal insulation materials for use in construction."""
|
145
162
|
|
146
163
|
_EXT_VERSION = "1.0"
|
147
164
|
|
@@ -162,25 +179,34 @@ class InsulationV1(BaseOpenEpdHierarchicalSpec):
|
|
162
179
|
|
163
180
|
|
164
181
|
class DampproofingAndWaterproofingV1(BaseOpenEpdHierarchicalSpec):
|
165
|
-
"""
|
182
|
+
"""
|
183
|
+
Dampproofing and waterproofing.
|
184
|
+
|
185
|
+
Dampproofing, and built-up bituminous, sheet, fluid-applied, cementitious, reactive, and bentonite waterproofing.
|
186
|
+
"""
|
166
187
|
|
167
188
|
_EXT_VERSION = "1.0"
|
168
189
|
|
169
190
|
|
170
191
|
class FlashingAndSheetMetalV1(BaseOpenEpdHierarchicalSpec):
|
171
|
-
"""
|
192
|
+
"""Exposed sheet metal items, typically for drainage."""
|
172
193
|
|
173
194
|
_EXT_VERSION = "1.0"
|
174
195
|
|
175
196
|
|
176
197
|
class JointProtectionV1(BaseOpenEpdHierarchicalSpec):
|
177
|
-
"""
|
198
|
+
"""Preformed joint seals and sealants, expansion control joint cover assemblies."""
|
178
199
|
|
179
200
|
_EXT_VERSION = "1.0"
|
180
201
|
|
181
202
|
|
182
203
|
class RoofCoverBoardsV1(BaseOpenEpdHierarchicalSpec):
|
183
|
-
"""
|
204
|
+
"""
|
205
|
+
Boards installed between the insulation and membrane layers on a roof system.
|
206
|
+
|
207
|
+
It provides additional durability, fire protection, thermal, and vapor performance to a roof system, especially
|
208
|
+
in low-slope, high foot traffic applications.
|
209
|
+
"""
|
184
210
|
|
185
211
|
_EXT_VERSION = "1.0"
|
186
212
|
|
@@ -191,19 +217,24 @@ class RoofCoverBoardsV1(BaseOpenEpdHierarchicalSpec):
|
|
191
217
|
|
192
218
|
|
193
219
|
class SteepSlopeRoofingV1(BaseOpenEpdHierarchicalSpec):
|
194
|
-
"""
|
220
|
+
"""Roofing materials typically for slopes of 3:12 and greater."""
|
195
221
|
|
196
222
|
_EXT_VERSION = "1.0"
|
197
223
|
|
198
224
|
|
199
225
|
class WeatherBarriersV1(BaseOpenEpdHierarchicalSpec):
|
200
|
-
"""
|
226
|
+
"""Vapor retarders and sheet or membrane air barriers."""
|
201
227
|
|
202
228
|
_EXT_VERSION = "1.0"
|
203
229
|
|
204
230
|
|
205
231
|
class ThermalMoistureProtectionV1(BaseOpenEpdHierarchicalSpec):
|
206
|
-
"""
|
232
|
+
"""
|
233
|
+
Thermal moisture protection.
|
234
|
+
|
235
|
+
Broad category of materials whose function is to provide moisture and thermal protection between spaces (e.g.,
|
236
|
+
between the exterior and interior of a building).
|
237
|
+
"""
|
207
238
|
|
208
239
|
_EXT_VERSION = "1.0"
|
209
240
|
|
@@ -24,13 +24,18 @@ from openepd.model.validation.quantity import LengthMmStr, MassPerLengthStr
|
|
24
24
|
|
25
25
|
|
26
26
|
class BuildingHeatingPipingV1(BaseOpenEpdHierarchicalSpec):
|
27
|
-
"""
|
27
|
+
"""
|
28
|
+
Heating piping.
|
29
|
+
|
30
|
+
System of pipes used to supply heated fluids (liquids or steam) for purposes of controlling temperature inside a
|
31
|
+
home, business, or other building facility.
|
32
|
+
"""
|
28
33
|
|
29
34
|
_EXT_VERSION = "1.0"
|
30
35
|
|
31
36
|
|
32
37
|
class BuriedPipingV1(BaseOpenEpdHierarchicalSpec):
|
33
|
-
"""
|
38
|
+
"""System of pipes used to provide or transport fluids (liquids and gases) underground."""
|
34
39
|
|
35
40
|
_EXT_VERSION = "1.0"
|
36
41
|
|
@@ -41,7 +46,12 @@ class BuriedPipingV1(BaseOpenEpdHierarchicalSpec):
|
|
41
46
|
|
42
47
|
|
43
48
|
class UtilityPipingV1(BaseOpenEpdHierarchicalSpec):
|
44
|
-
"""
|
49
|
+
"""
|
50
|
+
Utility piping.
|
51
|
+
|
52
|
+
System of pipes used to convey fluids (liquids and gases) from one location to another. Piping can be metal,
|
53
|
+
plastic, concrete, fiberglass, or other materials.
|
54
|
+
"""
|
45
55
|
|
46
56
|
_EXT_VERSION = "1.0"
|
47
57
|
|
@@ -35,31 +35,43 @@ from openepd.model.validation.quantity import LengthMmStr
|
|
35
35
|
|
36
36
|
|
37
37
|
class WoodDeckingV1(BaseOpenEpdHierarchicalSpec):
|
38
|
-
"""
|
38
|
+
"""Dimensional boards for exterior decking."""
|
39
39
|
|
40
40
|
_EXT_VERSION = "1.0"
|
41
41
|
|
42
42
|
|
43
43
|
class WoodFramingV1(BaseOpenEpdHierarchicalSpec):
|
44
|
-
"""
|
44
|
+
"""
|
45
|
+
Dimension lumber for light framing.
|
46
|
+
|
47
|
+
Includes solid and finger-jointed lumber. Standard shapes include 2x4, 2x6, and 2x8.
|
48
|
+
"""
|
45
49
|
|
46
50
|
_EXT_VERSION = "1.0"
|
47
51
|
|
48
52
|
|
49
53
|
class PrefabricatedWoodInsulatedPanelsV1(BaseOpenEpdHierarchicalSpec):
|
50
|
-
"""
|
54
|
+
"""
|
55
|
+
Structural insulated panels (SIPs).
|
56
|
+
|
57
|
+
Consist of wood sheet layer(s) combined with (typically foam) insulation layer(s).
|
58
|
+
"""
|
51
59
|
|
52
60
|
_EXT_VERSION = "1.0"
|
53
61
|
|
54
62
|
|
55
63
|
class PrefabricatedWoodTrussV1(BaseOpenEpdHierarchicalSpec):
|
56
|
-
"""
|
64
|
+
"""Shop-fabricated wood truss."""
|
57
65
|
|
58
66
|
_EXT_VERSION = "1.0"
|
59
67
|
|
60
68
|
|
61
69
|
class CompositeLumberV1(BaseOpenEpdHierarchicalSpec):
|
62
|
-
"""
|
70
|
+
"""
|
71
|
+
Shop-fabricated structural Lumber.
|
72
|
+
|
73
|
+
Includes Laminated Strand Lumber (LSL), Parallel Strand Lumber (PSL), and Laminated Veneer Lumber (LVL).
|
74
|
+
"""
|
63
75
|
|
64
76
|
_EXT_VERSION = "1.0"
|
65
77
|
|
@@ -68,7 +80,7 @@ class CompositeLumberV1(BaseOpenEpdHierarchicalSpec):
|
|
68
80
|
|
69
81
|
|
70
82
|
class DimensionLumberV1(BaseOpenEpdHierarchicalSpec):
|
71
|
-
"""Dimension lumber
|
83
|
+
"""Dimension lumber for framing, decking, and other purposes."""
|
72
84
|
|
73
85
|
_EXT_VERSION = "1.0"
|
74
86
|
|
@@ -79,13 +91,18 @@ class DimensionLumberV1(BaseOpenEpdHierarchicalSpec):
|
|
79
91
|
|
80
92
|
|
81
93
|
class HeavyTimberV1(BaseOpenEpdHierarchicalSpec):
|
82
|
-
"""Large format natural timber."""
|
94
|
+
"""Large format, unfinished natural timber."""
|
83
95
|
|
84
96
|
_EXT_VERSION = "1.0"
|
85
97
|
|
86
98
|
|
87
99
|
class MassTimberV1(BaseOpenEpdHierarchicalSpec):
|
88
|
-
"""
|
100
|
+
"""
|
101
|
+
Engineered heavy timber products.
|
102
|
+
|
103
|
+
Includes glue laminated (glulam), cross-laminated timber (CLT), dowel laminated timber (DLT), and nail laminated
|
104
|
+
timber (NLT).
|
105
|
+
"""
|
89
106
|
|
90
107
|
_EXT_VERSION = "1.0"
|
91
108
|
|
@@ -94,13 +111,18 @@ class MassTimberV1(BaseOpenEpdHierarchicalSpec):
|
|
94
111
|
|
95
112
|
|
96
113
|
class NonStructuralWoodV1(BaseOpenEpdHierarchicalSpec):
|
97
|
-
"""
|
114
|
+
"""Non-structural interior and exterior wood products for trim, cabinets, countertops, etc."""
|
98
115
|
|
99
116
|
_EXT_VERSION = "1.0"
|
100
117
|
|
101
118
|
|
102
119
|
class PrefabricatedWoodV1(BaseOpenEpdHierarchicalSpec):
|
103
|
-
"""
|
120
|
+
"""
|
121
|
+
Prefabricated wood structural members made primarily from one or more types of wood.
|
122
|
+
|
123
|
+
Includes products made with metallic connectors, insulation, etc. Excludes products where the wood is merely
|
124
|
+
decorative.
|
125
|
+
"""
|
104
126
|
|
105
127
|
_EXT_VERSION = "1.0"
|
106
128
|
|
@@ -110,7 +132,7 @@ class PrefabricatedWoodV1(BaseOpenEpdHierarchicalSpec):
|
|
110
132
|
|
111
133
|
|
112
134
|
class SheathingPanelsV1(BaseOpenEpdHierarchicalSpec):
|
113
|
-
"""
|
135
|
+
"""Wood sheets used for structural sheathing, including plywood and Oriented Strand Board."""
|
114
136
|
|
115
137
|
_EXT_VERSION = "1.0"
|
116
138
|
|
@@ -121,13 +143,13 @@ class SheathingPanelsV1(BaseOpenEpdHierarchicalSpec):
|
|
121
143
|
|
122
144
|
|
123
145
|
class UnfinishedWoodV1(BaseOpenEpdHierarchicalSpec):
|
124
|
-
"""
|
146
|
+
"""Raw logs and other unfinished wood products."""
|
125
147
|
|
126
148
|
_EXT_VERSION = "1.0"
|
127
149
|
|
128
150
|
|
129
151
|
class WoodV1(BaseOpenEpdHierarchicalSpec, HasForestPracticesCertifiers):
|
130
|
-
"""Wood
|
152
|
+
"""Structural Wood Products used in construction."""
|
131
153
|
|
132
154
|
_EXT_VERSION = "1.0"
|
133
155
|
|
@@ -25,7 +25,12 @@ from openepd.model.specs.generated.enums import AllFabrication, AllTimberSpecies
|
|
25
25
|
|
26
26
|
|
27
27
|
class WoodJoistsV1(BaseOpenEpdHierarchicalSpec, HasForestPracticesCertifiers):
|
28
|
-
"""
|
28
|
+
"""
|
29
|
+
Wood joists.
|
30
|
+
|
31
|
+
Prefabricated I-shaped engineered wood structural members made primarily from one or more types of wood. Includes
|
32
|
+
products made with metallic webbing. Excludes products where the wood is merely decorative.
|
33
|
+
"""
|
29
34
|
|
30
35
|
_EXT_VERSION = "1.0"
|
31
36
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
openepd/__init__.py,sha256=rqQJWF5jpYAgRbbAycUfWMGsr5kGtfjmwzsTeqbElJw,837
|
2
|
-
openepd/__version__.py,sha256
|
2
|
+
openepd/__version__.py,sha256=-Ng8pcaeBzfupdGm3pQHDa3op6P6Hhxrg-1GsHC6NRQ,855
|
3
3
|
openepd/api/__init__.py,sha256=rqQJWF5jpYAgRbbAycUfWMGsr5kGtfjmwzsTeqbElJw,837
|
4
4
|
openepd/api/base_sync_client.py,sha256=JcNpWsGoIK_1Eg27CAQd7nIjbcfD56jQ1nS6B48Q0cI,21142
|
5
5
|
openepd/api/category/__init__.py,sha256=rqQJWF5jpYAgRbbAycUfWMGsr5kGtfjmwzsTeqbElJw,837
|
@@ -43,42 +43,43 @@ openepd/model/specs/__init__.py,sha256=lN1u5WN1H9uwWSHb4sFEBxJ3_tvGYar9iCvsDD67J
|
|
43
43
|
openepd/model/specs/asphalt.py,sha256=1Vmw3jsdTyhPaM9ftIjMvpLj7GbGnZLytaJYDDJQ7bU,3549
|
44
44
|
openepd/model/specs/base.py,sha256=T0HsHTFf5ew1sLgUf-7dfifrMPMup7WRc-C5DHAXUc4,2697
|
45
45
|
openepd/model/specs/concrete.py,sha256=YvhUaq0GBazRuYUiMhdt1qppcBS9PcVlg98XuzMsJ-4,9810
|
46
|
-
openepd/model/specs/generated/
|
46
|
+
openepd/model/specs/generated/__init__.py,sha256=rqQJWF5jpYAgRbbAycUfWMGsr5kGtfjmwzsTeqbElJw,837
|
47
|
+
openepd/model/specs/generated/accessories.py,sha256=vf1ddAs7c7xpV3rteWOriHRgDSx9q9Ze4TnhZADvHbI,2230
|
47
48
|
openepd/model/specs/generated/aggregates.py,sha256=TMw2f7K7kuKP23MWkeFyqKUIXJFIamwX3gSR-48k3AY,3161
|
48
|
-
openepd/model/specs/generated/aluminium.py,sha256=
|
49
|
-
openepd/model/specs/generated/asphalt.py,sha256=
|
50
|
-
openepd/model/specs/generated/bulk_materials.py,sha256=
|
51
|
-
openepd/model/specs/generated/cast_decks_and_underlayment.py,sha256=
|
52
|
-
openepd/model/specs/generated/cladding.py,sha256=
|
53
|
-
openepd/model/specs/generated/cmu.py,sha256=
|
49
|
+
openepd/model/specs/generated/aluminium.py,sha256=ZSB007yBEAncDhsokaBDKU-wcKVaOSVLaTd3beFVVos,2630
|
50
|
+
openepd/model/specs/generated/asphalt.py,sha256=ffQdP9IFloEzdU0gahVZ5ji8nnW5luL-vKf8quIfGpg,3369
|
51
|
+
openepd/model/specs/generated/bulk_materials.py,sha256=m8fqbevCErB7rSS-Mm8kWfKI1gQrpBybg-g4FzFIolE,1092
|
52
|
+
openepd/model/specs/generated/cast_decks_and_underlayment.py,sha256=BBsBtsO05BJE0uq3A6OufGN_YBr8QbL1WTkBs3bVAp8,1172
|
53
|
+
openepd/model/specs/generated/cladding.py,sha256=LZoS5FHkaCPRJ6B2Tx7ej_tMjmrEvJ_5Pcy8dE68ScQ,6779
|
54
|
+
openepd/model/specs/generated/cmu.py,sha256=K4WvXVBVwz4VItow_1nb3EOFUlg7Fj_AB7Vbka5D9DI,2011
|
54
55
|
openepd/model/specs/generated/common.py,sha256=n_wuE-VtNFytpE-uLZrSXeeIIoNl2lSutPodiGKH94E,1117
|
55
56
|
openepd/model/specs/generated/concrete.py,sha256=EPyT87aid75q9WGxmOX8k4ik4I9SfoL_fbvhYHsfbEo,7204
|
56
|
-
openepd/model/specs/generated/conveying_equipment.py,sha256=
|
57
|
-
openepd/model/specs/generated/electrical.py,sha256=
|
58
|
-
openepd/model/specs/generated/electrical_transmission_and_distribution_equipment.py,sha256=
|
59
|
-
openepd/model/specs/generated/electricity.py,sha256=
|
60
|
-
openepd/model/specs/generated/enums.py,sha256=
|
61
|
-
openepd/model/specs/generated/finishes.py,sha256=
|
62
|
-
openepd/model/specs/generated/fire_and_smoke_protection.py,sha256=
|
63
|
-
openepd/model/specs/generated/furnishings.py,sha256=
|
64
|
-
openepd/model/specs/generated/grouting.py,sha256=
|
65
|
-
openepd/model/specs/generated/manufacturing_inputs.py,sha256=
|
66
|
-
openepd/model/specs/generated/masonry.py,sha256=
|
67
|
-
openepd/model/specs/generated/material_handling.py,sha256=
|
68
|
-
openepd/model/specs/generated/mechanical.py,sha256=
|
69
|
-
openepd/model/specs/generated/mechanical_insulation.py,sha256=
|
70
|
-
openepd/model/specs/generated/network_infrastructure.py,sha256=
|
57
|
+
openepd/model/specs/generated/conveying_equipment.py,sha256=RqtQz-TgB9zx3Oz8Cx3S4S8UEtuRAvB1joiQJ5kWqPo,2034
|
58
|
+
openepd/model/specs/generated/electrical.py,sha256=sDmi_uHGt6WuP0Alno6HVwSVQiOVLYLQUvfqXwCP7sk,10972
|
59
|
+
openepd/model/specs/generated/electrical_transmission_and_distribution_equipment.py,sha256=EQDSVWsy5OGTUpDnZtKG6f6ATNFMWEHd3QtxF-K9XHc,2195
|
60
|
+
openepd/model/specs/generated/electricity.py,sha256=A25htITXhTYhisXgwUS4zdDlKYaMXWgRbYTeOlGE4O4,1040
|
61
|
+
openepd/model/specs/generated/enums.py,sha256=rYGrRNv5pHBG2osQr77zfdZK0T6D3zkn5Fy-VHdjmvQ,58546
|
62
|
+
openepd/model/specs/generated/finishes.py,sha256=fm7VeKzAA4dq5hJ0IBFegPSWO3fnvKNn2HpIwzI6F_Y,21338
|
63
|
+
openepd/model/specs/generated/fire_and_smoke_protection.py,sha256=4HEz6kp5pc9Wmk-6N6aEgFm0PaVa3V9Tz_jn6flcw3o,3285
|
64
|
+
openepd/model/specs/generated/furnishings.py,sha256=c0FeNZp26DcHhAnxO0SyrnNjO7qXrQDAS_9c_UiWoys,2798
|
65
|
+
openepd/model/specs/generated/grouting.py,sha256=TVT0VPECrEMwVMKdReoaWT6kYE7kmwZsn_vK97OHG3M,1151
|
66
|
+
openepd/model/specs/generated/manufacturing_inputs.py,sha256=Kz9OgRsddgkWNNet_th0gYoxpDrbOh5D_j--9VsjXC4,5320
|
67
|
+
openepd/model/specs/generated/masonry.py,sha256=eYxn_jg85dLwRxxwdP5yO63GodiJNC_fECqBl4pJZHA,3286
|
68
|
+
openepd/model/specs/generated/material_handling.py,sha256=Hf5Q-Sj69lB7uC24E4qR0qqAgfYbsM1CK0c55et8hm0,1491
|
69
|
+
openepd/model/specs/generated/mechanical.py,sha256=YmddSSEoPIPJULBr1GXPG_h6KcgCsewnGnFJeysoKls,9494
|
70
|
+
openepd/model/specs/generated/mechanical_insulation.py,sha256=rajv2s2x-sgp3Jbr438ra25lESGGPdf5cDqARUW9uz0,1834
|
71
|
+
openepd/model/specs/generated/network_infrastructure.py,sha256=r00ldw4S28cx3dlQFjAAbIwWRd2bRAbDzgYT5obM-Oc,8374
|
71
72
|
openepd/model/specs/generated/openings.py,sha256=QVPbHP3yMHBPFrAo_fk6CYcJ3OltlMIKXX4-JNWE95k,19035
|
72
|
-
openepd/model/specs/generated/other_electrical_equipment.py,sha256=
|
73
|
-
openepd/model/specs/generated/other_materials.py,sha256=
|
74
|
-
openepd/model/specs/generated/plumbing.py,sha256=
|
75
|
-
openepd/model/specs/generated/precast_concrete.py,sha256=
|
76
|
-
openepd/model/specs/generated/sheathing.py,sha256=
|
73
|
+
openepd/model/specs/generated/other_electrical_equipment.py,sha256=E-SkM07IfdZ_CHMcDsDF5PQpnsimTodMBFRS2yt_GAo,1031
|
74
|
+
openepd/model/specs/generated/other_materials.py,sha256=ACMMvECjnkQka4HGm6A9tSWTjkROml7kOog7SwtcrQw,3715
|
75
|
+
openepd/model/specs/generated/plumbing.py,sha256=DHgRLbNWO7se97YfY8y6Zol4acjokFJeb-gNGC1Ufmk,4795
|
76
|
+
openepd/model/specs/generated/precast_concrete.py,sha256=W6eNlkvVslTs6TG3RzQlrJXlpnFS_9hsw-i8n6QxwUU,7544
|
77
|
+
openepd/model/specs/generated/sheathing.py,sha256=bB3nzuLKHNO1S0yAFNIVjncVAwbDT2pVfkfcyJojtqI,3853
|
77
78
|
openepd/model/specs/generated/steel.py,sha256=rDrAxzqbb0LsvVPUS1-mXhoTu-SmgleXBRx0kh_J5Tw,10118
|
78
|
-
openepd/model/specs/generated/thermal_moisture_protection.py,sha256=
|
79
|
-
openepd/model/specs/generated/utility_piping.py,sha256=
|
80
|
-
openepd/model/specs/generated/wood.py,sha256=
|
81
|
-
openepd/model/specs/generated/wood_joists.py,sha256=
|
79
|
+
openepd/model/specs/generated/thermal_moisture_protection.py,sha256=tX_fuj4fNoaxox6pZQRhiIygJzmtM6_atdpktSYnxyE,8422
|
80
|
+
openepd/model/specs/generated/utility_piping.py,sha256=_d75ekPL3vT1bsqGLg2k75K_ajAjZZVFJyiMH53ETho,2710
|
81
|
+
openepd/model/specs/generated/wood.py,sha256=8RnttqVhnNgV-liGk1jwz25YoqkZiXnyz4zzjm7HKZI,6756
|
82
|
+
openepd/model/specs/generated/wood_joists.py,sha256=VMOV3P_UhVn3398cSlZLJSjGouWuk0OYC-fowrPRtkE,2079
|
82
83
|
openepd/model/standard.py,sha256=8F70DCagplBe7IvkGJOUmt7td-uh_8zzdpvuVpjk0GY,1535
|
83
84
|
openepd/model/validation/__init__.py,sha256=rqQJWF5jpYAgRbbAycUfWMGsr5kGtfjmwzsTeqbElJw,837
|
84
85
|
openepd/model/validation/common.py,sha256=TPxIUtTNqNLiDsvuSE_dVREtNBe6XsagVMH4u1MYfpA,2652
|
@@ -86,7 +87,7 @@ openepd/model/validation/numbers.py,sha256=4gkMS35zKnGyfdFyLTgHncNmKpg8-WOYX9qaU
|
|
86
87
|
openepd/model/validation/quantity.py,sha256=1RR482ARLOMLiprXbKrw0VhVv_Eye9JGKud4j_pVatM,7402
|
87
88
|
openepd/model/versioning.py,sha256=1gqeeAhc2lVonq9ErOD3Ws7XZ0CgZnmlFpKHKrc9IwI,4690
|
88
89
|
openepd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
89
|
-
openepd-3.
|
90
|
-
openepd-3.
|
91
|
-
openepd-3.
|
92
|
-
openepd-3.
|
90
|
+
openepd-3.3.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
91
|
+
openepd-3.3.0.dist-info/METADATA,sha256=7TSRRw-SeFOp8ro-YhlZx04GZeqTLrhFuc9PqqhWQ_4,7790
|
92
|
+
openepd-3.3.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
93
|
+
openepd-3.3.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|