openepd 7.12.0__py3-none-any.whl → 7.13.1__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 +16 -3
- openepd/model/specs/range/electrical.py +13 -1
- openepd/model/specs/range/other_electrical_equipment.py +2 -15
- openepd/model/specs/singular/__init__.py +12 -3
- openepd/model/specs/singular/electrical.py +41 -1
- openepd/model/specs/singular/other_electrical_equipment.py +2 -6
- {openepd-7.12.0.dist-info → openepd-7.13.1.dist-info}/METADATA +1 -1
- {openepd-7.12.0.dist-info → openepd-7.13.1.dist-info}/RECORD +12 -12
- {openepd-7.12.0.dist-info → openepd-7.13.1.dist-info}/LICENSE +0 -0
- {openepd-7.12.0.dist-info → openepd-7.13.1.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
|
|
@@ -53,7 +55,6 @@ from .non_construction import (
|
|
|
53
55
|
VehiclesRangeV1,
|
|
54
56
|
)
|
|
55
57
|
from .openings import OpeningsRangeV1
|
|
56
|
-
from .other_electrical_equipment import OtherElectricalEquipmentRangeV1
|
|
57
58
|
from .other_materials import FoodBeverageRangeV1, OtherMaterialsRangeV1, TextileProductsRangeV1
|
|
58
59
|
from .plumbing import PlumbingRangeV1
|
|
59
60
|
from .precast_concrete import PrecastConcreteRangeV1
|
|
@@ -106,7 +107,6 @@ class SpecsRange(BaseOpenEpdHierarchicalSpec):
|
|
|
106
107
|
Electricity: ElectricityRangeV1 | None = None
|
|
107
108
|
Grouting: GroutingRangeV1 | None = None
|
|
108
109
|
MechanicalInsulation: MechanicalInsulationRangeV1 | None = None
|
|
109
|
-
OtherElectricalEquipment: OtherElectricalEquipmentRangeV1 | None = None
|
|
110
110
|
WoodJoists: WoodJoistsRangeV1 | None = None
|
|
111
111
|
ExteriorImprovements: ExteriorImprovementsRangeV1 | None = None
|
|
112
112
|
TextileProducts: TextileProductsRangeV1 | None = None
|
|
@@ -117,3 +117,16 @@ class SpecsRange(BaseOpenEpdHierarchicalSpec):
|
|
|
117
117
|
Services: ServicesRangeV1 | None = None
|
|
118
118
|
ConsumerGoods: ConsumerGoodsRangeV1 | None = None
|
|
119
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
|
+
"""
|
|
@@ -33,6 +33,7 @@ __all__ = (
|
|
|
33
33
|
"LowVoltBusesRangeV1",
|
|
34
34
|
"LowVoltageElectricalDistributionRangeV1",
|
|
35
35
|
"MedVoltBusesRangeV1",
|
|
36
|
+
"OtherElectricalEquipmentRangeV1",
|
|
36
37
|
"OtherElectricalPowerStorageRangeV1",
|
|
37
38
|
"OtherGenerationRangeV1",
|
|
38
39
|
"OutdoorLightingRangeV1",
|
|
@@ -408,6 +409,16 @@ class ElectricalConduitRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
|
408
409
|
material: list[ConduitMaterial] | None = None
|
|
409
410
|
|
|
410
411
|
|
|
412
|
+
class OtherElectricalEquipmentRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
413
|
+
"""
|
|
414
|
+
Other Electrical Equipment.
|
|
415
|
+
|
|
416
|
+
Range version.
|
|
417
|
+
"""
|
|
418
|
+
|
|
419
|
+
_EXT_VERSION = "1.0"
|
|
420
|
+
|
|
421
|
+
|
|
411
422
|
class ElectricalRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
412
423
|
"""
|
|
413
424
|
Electric power and equipment.
|
|
@@ -415,7 +426,7 @@ class ElectricalRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
|
415
426
|
Range version.
|
|
416
427
|
"""
|
|
417
428
|
|
|
418
|
-
_EXT_VERSION = "1.
|
|
429
|
+
_EXT_VERSION = "1.2"
|
|
419
430
|
|
|
420
431
|
ElectricalPowerStorage: ElectricalPowerStorageRangeV1 | None = None
|
|
421
432
|
LowVoltageElectricalDistribution: LowVoltageElectricalDistributionRangeV1 | None = None
|
|
@@ -423,3 +434,4 @@ class ElectricalRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
|
423
434
|
ElectricPower: ElectricPowerRangeV1 | None = None
|
|
424
435
|
Lighting: LightingRangeV1 | None = None
|
|
425
436
|
ElectricalConduit: ElectricalConduitRangeV1 | None = None
|
|
437
|
+
OtherElectricalEquipment: OtherElectricalEquipmentRangeV1 | None = None
|
|
@@ -13,19 +13,6 @@
|
|
|
13
13
|
# See the License for the specific language governing permissions and
|
|
14
14
|
# limitations under the License.
|
|
15
15
|
#
|
|
16
|
-
__all__ = ("OtherElectricalEquipmentRangeV1",)
|
|
17
16
|
|
|
18
|
-
#
|
|
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"
|
|
17
|
+
# Deprecated import: This import is kept for backward compatibility and should be removed in the future.
|
|
18
|
+
from .electrical import OtherElectricalEquipmentRangeV1 # noqa: F401
|
|
@@ -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
|
)
|
|
@@ -65,7 +65,6 @@ from openepd.model.specs.singular.non_construction import (
|
|
|
65
65
|
VehiclesV1,
|
|
66
66
|
)
|
|
67
67
|
from openepd.model.specs.singular.openings import OpeningsV1
|
|
68
|
-
from openepd.model.specs.singular.other_electrical_equipment import OtherElectricalEquipmentV1
|
|
69
68
|
from openepd.model.specs.singular.other_materials import FoodBeverageV1, OtherMaterialsV1, TextileProductsV1
|
|
70
69
|
from openepd.model.specs.singular.plumbing import PlumbingV1
|
|
71
70
|
from openepd.model.specs.singular.precast_concrete import PrecastConcreteV1
|
|
@@ -122,7 +121,6 @@ class Specs(BaseOpenEpdHierarchicalSpec):
|
|
|
122
121
|
Electricity: ElectricityV1 | None = None
|
|
123
122
|
Grouting: GroutingV1 | None = None
|
|
124
123
|
MechanicalInsulation: MechanicalInsulationV1 | None = None
|
|
125
|
-
OtherElectricalEquipment: OtherElectricalEquipmentV1 | None = None
|
|
126
124
|
WoodJoists: WoodJoistsV1 | None = None
|
|
127
125
|
ExteriorImprovements: ExteriorImprovementsV1 | None = None
|
|
128
126
|
TextileProducts: TextileProductsV1 | None = None
|
|
@@ -134,6 +132,17 @@ class Specs(BaseOpenEpdHierarchicalSpec):
|
|
|
134
132
|
ConsumerGoods: ConsumerGoodsV1 | None = None
|
|
135
133
|
FoodBeverage: FoodBeverageV1 | None = None
|
|
136
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
|
+
"""
|
|
145
|
+
|
|
137
146
|
# historical backward-compatible specs
|
|
138
147
|
concrete: ConcreteOldSpec | None = None
|
|
139
148
|
steel: SteelOldSpec | None = None
|
|
@@ -13,6 +13,39 @@
|
|
|
13
13
|
# See the License for the specific language governing permissions and
|
|
14
14
|
# limitations under the License.
|
|
15
15
|
#
|
|
16
|
+
__all__ = (
|
|
17
|
+
"BatteriesV1",
|
|
18
|
+
"CableTraysV1",
|
|
19
|
+
"ElectricPowerV1",
|
|
20
|
+
"ElectricalBusesV1",
|
|
21
|
+
"ElectricalConduitV1",
|
|
22
|
+
"ElectricalGenerationEquipmentV1",
|
|
23
|
+
"ElectricalPowerStorageV1",
|
|
24
|
+
"ElectricalV1",
|
|
25
|
+
"ElectricityFromPowerGridV1",
|
|
26
|
+
"ElectricityFromSpecificGeneratorV1",
|
|
27
|
+
"FloorEquipmentBoxesV1",
|
|
28
|
+
"FueledElectricalGeneratorsV1",
|
|
29
|
+
"LightbulbsV1",
|
|
30
|
+
"LightingControlsV1",
|
|
31
|
+
"LightingFixturesV1",
|
|
32
|
+
"LightingV1",
|
|
33
|
+
"LowVoltBusesV1",
|
|
34
|
+
"LowVoltageElectricalDistributionV1",
|
|
35
|
+
"MedVoltBusesV1",
|
|
36
|
+
"OtherElectricalEquipmentV1",
|
|
37
|
+
"OtherElectricalPowerStorageV1",
|
|
38
|
+
"OtherGenerationV1",
|
|
39
|
+
"OutdoorLightingV1",
|
|
40
|
+
"PhotovoltaicsV1",
|
|
41
|
+
"PowerDistributionUnitsV1",
|
|
42
|
+
"PowerPurchaseAgreementsV1",
|
|
43
|
+
"RacewaysV1",
|
|
44
|
+
"SpecialtyLightingV1",
|
|
45
|
+
"TaskLightingV1",
|
|
46
|
+
"WindTurbinesV1",
|
|
47
|
+
)
|
|
48
|
+
|
|
16
49
|
import pydantic
|
|
17
50
|
|
|
18
51
|
from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
|
|
@@ -326,10 +359,16 @@ class ElectricalConduitV1(BaseOpenEpdHierarchicalSpec, ConduitMixin):
|
|
|
326
359
|
_EXT_VERSION = "1.1"
|
|
327
360
|
|
|
328
361
|
|
|
362
|
+
class OtherElectricalEquipmentV1(BaseOpenEpdHierarchicalSpec):
|
|
363
|
+
"""Other Electrical Equipment."""
|
|
364
|
+
|
|
365
|
+
_EXT_VERSION = "1.0"
|
|
366
|
+
|
|
367
|
+
|
|
329
368
|
class ElectricalV1(BaseOpenEpdHierarchicalSpec):
|
|
330
369
|
"""Electric power and equipment."""
|
|
331
370
|
|
|
332
|
-
_EXT_VERSION = "1.
|
|
371
|
+
_EXT_VERSION = "1.2"
|
|
333
372
|
|
|
334
373
|
# Nested specs:
|
|
335
374
|
ElectricalPowerStorage: ElectricalPowerStorageV1 | None = None
|
|
@@ -338,3 +377,4 @@ class ElectricalV1(BaseOpenEpdHierarchicalSpec):
|
|
|
338
377
|
ElectricPower: ElectricPowerV1 | None = None
|
|
339
378
|
Lighting: LightingV1 | None = None
|
|
340
379
|
ElectricalConduit: ElectricalConduitV1 | None = None
|
|
380
|
+
OtherElectricalEquipment: OtherElectricalEquipmentV1 | None = None
|
|
@@ -13,10 +13,6 @@
|
|
|
13
13
|
# See the License for the specific language governing permissions and
|
|
14
14
|
# limitations under the License.
|
|
15
15
|
#
|
|
16
|
-
from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
|
|
17
16
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"""Other Electrical Equipment."""
|
|
21
|
-
|
|
22
|
-
_EXT_VERSION = "1.0"
|
|
17
|
+
# Deprecated import: This import is kept for backward compatibility and should be removed in the future.
|
|
18
|
+
from .electrical import OtherElectricalEquipmentV1 # noqa: F401
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
openepd/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dvvtd4,620
|
|
2
|
-
openepd/__version__.py,sha256=
|
|
2
|
+
openepd/__version__.py,sha256=zySSeEI6tW3sfh-RXNq0l-vE-71Yuj5Wo2xONMz0W40,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=N1YP0hMd6gdxRKkDUrWlsjUjRMIheDxdcrFGDu9oxcI,12224
|
|
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
|
|
@@ -88,7 +88,7 @@ openepd/model/specs/range/mixins/access_flooring_mixin.py,sha256=pQH7lt7oD3e8g19
|
|
|
88
88
|
openepd/model/specs/range/network_infrastructure.py,sha256=nq8g1s7_EKjZNODxnlfMB7ipZ90z5w7TVd6b5EUywkA,8738
|
|
89
89
|
openepd/model/specs/range/non_construction.py,sha256=PDJn1QKQR9wHYr-KtWIxji-41IKFSeMZUS1fSjy4QGU,1664
|
|
90
90
|
openepd/model/specs/range/openings.py,sha256=j7c49jlvfvnu03KVvYiNyyWEAjQYcxW6czxgD1z93Rw,15734
|
|
91
|
-
openepd/model/specs/range/other_electrical_equipment.py,sha256=
|
|
91
|
+
openepd/model/specs/range/other_electrical_equipment.py,sha256=NM7mlm38W9PTFMPPvvX5IaPMR2CCbpVO6Yi3i9iBb78,796
|
|
92
92
|
openepd/model/specs/range/other_materials.py,sha256=RaLM3TrQ_woHJpYUug6XapSZmWfzYbkFlULegWfBab4,5962
|
|
93
93
|
openepd/model/specs/range/plumbing.py,sha256=pjdIOvQAat-8e0zqJM7gs30h131mqryU5uCGOdeTRaE,5382
|
|
94
94
|
openepd/model/specs/range/precast_concrete.py,sha256=i766QYGjnl5_1Ip_6_-x1QpCXSybM0bjN4ESq2njIQ0,3820
|
|
@@ -98,7 +98,7 @@ openepd/model/specs/range/thermal_moisture_protection.py,sha256=cdr610ZdOlbd3LYz
|
|
|
98
98
|
openepd/model/specs/range/utility_piping.py,sha256=doRcQRfBWvHX7FDDYk-bEU5rVCS_vjZ_5gKslI0xR7Y,2671
|
|
99
99
|
openepd/model/specs/range/wood.py,sha256=WIZOSixS1hlmI66XpL9PhVRZ3ST423A_ihCz2CEbuCk,6914
|
|
100
100
|
openepd/model/specs/range/wood_joists.py,sha256=PVGJZPdaI685rUI6TS3MZrAFkeMckFGpCYTNJLBr6IM,1786
|
|
101
|
-
openepd/model/specs/singular/__init__.py,sha256=
|
|
101
|
+
openepd/model/specs/singular/__init__.py,sha256=jlivBY6OZShPAWCoh-0AUIPO45deG-9Yk1MKwv2Z44s,12506
|
|
102
102
|
openepd/model/specs/singular/accessories.py,sha256=xcuSJrG84oTm_w76_wlv_sItfK36gSyDmUD2TnpZnVE,2013
|
|
103
103
|
openepd/model/specs/singular/aggregates.py,sha256=n_AbZK6TJHJ6boyMz6AyikUkMiNlq8G_NOcqEy_A-Sg,2975
|
|
104
104
|
openepd/model/specs/singular/aluminium.py,sha256=rOFEzIVvR2t0QGLN3Zk_Pi_m4v2dMU4PoDQN1hULMn4,2524
|
|
@@ -113,7 +113,7 @@ openepd/model/specs/singular/conveying_equipment.py,sha256=Hcy1zcXKsGIuh303xiRJw
|
|
|
113
113
|
openepd/model/specs/singular/deprecated/__init__.py,sha256=NufJ5lJeuWQ_aV7tHIX_H_StU4fNdGkcEaCA64FOcsA,2619
|
|
114
114
|
openepd/model/specs/singular/deprecated/concrete.py,sha256=xqHxwFUzy0XEa66e1N1Z3aKt6hhnHhbJ76XiRoe0wtQ,5604
|
|
115
115
|
openepd/model/specs/singular/deprecated/steel.py,sha256=xqp6rqA49ARY7uvObvnNh-y9cN0WCy0Qz3sMuuIBXPY,3647
|
|
116
|
-
openepd/model/specs/singular/electrical.py,sha256=
|
|
116
|
+
openepd/model/specs/singular/electrical.py,sha256=wR8thw5b2GwED_oo4vzmGysn7f4HU9LU8uI6N9OZOsI,12633
|
|
117
117
|
openepd/model/specs/singular/electrical_transmission_and_distribution_equipment.py,sha256=oZYyHgnXn9RH3YzltUEDiiQKrin2mvMlTgC3OhxV7DY,1978
|
|
118
118
|
openepd/model/specs/singular/electricity.py,sha256=f1cJ9eklNUf97khCIZiT5-z8V_TbOcvH2me_1UTQVrE,823
|
|
119
119
|
openepd/model/specs/singular/exterior_improvements.py,sha256=f_xJJCVVAlHi5A7v1x9Xu_CIht4M-PstAtabWxDxLMA,1695
|
|
@@ -132,7 +132,7 @@ openepd/model/specs/singular/mixins/conduit_mixin.py,sha256=H5rbXIy3lpiU_Rub3_f7
|
|
|
132
132
|
openepd/model/specs/singular/network_infrastructure.py,sha256=QGMIFzexHH94phkFw7iYl-fTZ_514dwYgvC-2sHjOZw,9316
|
|
133
133
|
openepd/model/specs/singular/non_construction.py,sha256=VW_dP5I8AUkwa923d2r9X8S78k6OUA5rU0UAypUX8t8,1634
|
|
134
134
|
openepd/model/specs/singular/openings.py,sha256=8XI9W-4h9oK1_hWNVOzNwvWxIZdAEze0A8ach5hThSU,19794
|
|
135
|
-
openepd/model/specs/singular/other_electrical_equipment.py,sha256=
|
|
135
|
+
openepd/model/specs/singular/other_electrical_equipment.py,sha256=55BCXX5GPxYPea_8Ro7hs_gec4ZMZJA72KEuejQqg3Y,791
|
|
136
136
|
openepd/model/specs/singular/other_materials.py,sha256=5KbH-db7-FpHiinTRcrGLcIDDkn790a3Mem5ZPpwcsA,4908
|
|
137
137
|
openepd/model/specs/singular/plumbing.py,sha256=dP6r7xy2yeP8ICEBN79CfJqyDiuwpTtDnURBfWmFWPs,4639
|
|
138
138
|
openepd/model/specs/singular/precast_concrete.py,sha256=25vn5UxiQbhsNisqBF9_GYASMl3D1iuDWxfnV5HOV4k,7567
|
|
@@ -156,7 +156,7 @@ openepd/utils/mapping/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dv
|
|
|
156
156
|
openepd/utils/mapping/common.py,sha256=hxfN-WW2WLwE_agQzf_mhvz6OHq5WWlr24uZ1S81k4Y,8426
|
|
157
157
|
openepd/utils/mapping/geography.py,sha256=1_-dvLk11Hqn-K58yUI5pQ5X5gsnJPFlFT7JK2Rdoeg,2396
|
|
158
158
|
openepd/utils/markdown.py,sha256=RQmudPhb4QU1I4-S-VV2WFbzzq2Po09kbpjjKbwkA9E,1830
|
|
159
|
-
openepd-7.
|
|
160
|
-
openepd-7.
|
|
161
|
-
openepd-7.
|
|
162
|
-
openepd-7.
|
|
159
|
+
openepd-7.13.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
160
|
+
openepd-7.13.1.dist-info/METADATA,sha256=hrln-JBGjpogfkq_bwqT-w22gS5RBybjyD1hqIOWxeo,9811
|
|
161
|
+
openepd-7.13.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
162
|
+
openepd-7.13.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|