openepd 7.12.0__py3-none-any.whl → 7.13.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- openepd/__version__.py +1 -1
- openepd/model/specs/__init__.py +1 -2
- openepd/model/specs/range/__init__.py +16 -3
- openepd/model/specs/range/electrical.py +12 -1
- openepd/model/specs/singular/__init__.py +12 -3
- openepd/model/specs/singular/electrical.py +8 -1
- {openepd-7.12.0.dist-info → openepd-7.13.0.dist-info}/METADATA +1 -1
- {openepd-7.12.0.dist-info → openepd-7.13.0.dist-info}/RECORD +10 -12
- openepd/model/specs/range/other_electrical_equipment.py +0 -31
- openepd/model/specs/singular/other_electrical_equipment.py +0 -22
- {openepd-7.12.0.dist-info → openepd-7.13.0.dist-info}/LICENSE +0 -0
- {openepd-7.12.0.dist-info → openepd-7.13.0.dist-info}/WHEEL +0 -0
openepd/__version__.py
CHANGED
openepd/model/specs/__init__.py
CHANGED
|
@@ -61,7 +61,7 @@ from openepd.model.specs.singular.cladding import CladdingV1
|
|
|
61
61
|
from openepd.model.specs.singular.cmu import CMUV1
|
|
62
62
|
from openepd.model.specs.singular.concrete import ConcreteV1
|
|
63
63
|
from openepd.model.specs.singular.conveying_equipment import ConveyingEquipmentV1
|
|
64
|
-
from openepd.model.specs.singular.electrical import ElectricalV1
|
|
64
|
+
from openepd.model.specs.singular.electrical import ElectricalV1, OtherElectricalEquipmentV1
|
|
65
65
|
from openepd.model.specs.singular.electrical_transmission_and_distribution_equipment import (
|
|
66
66
|
ElectricalTransmissionAndDistributionEquipmentV1,
|
|
67
67
|
)
|
|
@@ -77,7 +77,6 @@ from openepd.model.specs.singular.mechanical import MechanicalV1
|
|
|
77
77
|
from openepd.model.specs.singular.mechanical_insulation import MechanicalInsulationV1
|
|
78
78
|
from openepd.model.specs.singular.network_infrastructure import NetworkInfrastructureV1
|
|
79
79
|
from openepd.model.specs.singular.openings import OpeningsV1
|
|
80
|
-
from openepd.model.specs.singular.other_electrical_equipment import OtherElectricalEquipmentV1
|
|
81
80
|
from openepd.model.specs.singular.other_materials import OtherMaterialsV1
|
|
82
81
|
from openepd.model.specs.singular.plumbing import PlumbingV1
|
|
83
82
|
from openepd.model.specs.singular.precast_concrete import PrecastConcreteV1
|
|
@@ -18,6 +18,8 @@ __all__ = [
|
|
|
18
18
|
]
|
|
19
19
|
|
|
20
20
|
|
|
21
|
+
import pydantic
|
|
22
|
+
|
|
21
23
|
from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
|
|
22
24
|
|
|
23
25
|
from .accessories import AccessoriesRangeV1
|
|
@@ -30,7 +32,7 @@ from .cladding import CladdingRangeV1
|
|
|
30
32
|
from .cmu import CMURangeV1
|
|
31
33
|
from .concrete import ConcreteRangeV1
|
|
32
34
|
from .conveying_equipment import ConveyingEquipmentRangeV1
|
|
33
|
-
from .electrical import ElectricalRangeV1
|
|
35
|
+
from .electrical import ElectricalRangeV1, OtherElectricalEquipmentRangeV1
|
|
34
36
|
from .electrical_transmission_and_distribution_equipment import ElectricalTransmissionAndDistributionEquipmentRangeV1
|
|
35
37
|
from .electricity import ElectricityRangeV1
|
|
36
38
|
from .exterior_improvements import ExteriorImprovementsRangeV1
|
|
@@ -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
|
+
"""
|
|
@@ -408,6 +408,16 @@ class ElectricalConduitRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
|
408
408
|
material: list[ConduitMaterial] | None = None
|
|
409
409
|
|
|
410
410
|
|
|
411
|
+
class OtherElectricalEquipmentRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
412
|
+
"""
|
|
413
|
+
Other Electrical Equipment.
|
|
414
|
+
|
|
415
|
+
Range version.
|
|
416
|
+
"""
|
|
417
|
+
|
|
418
|
+
_EXT_VERSION = "1.0"
|
|
419
|
+
|
|
420
|
+
|
|
411
421
|
class ElectricalRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
412
422
|
"""
|
|
413
423
|
Electric power and equipment.
|
|
@@ -415,7 +425,7 @@ class ElectricalRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
|
415
425
|
Range version.
|
|
416
426
|
"""
|
|
417
427
|
|
|
418
|
-
_EXT_VERSION = "1.
|
|
428
|
+
_EXT_VERSION = "1.2"
|
|
419
429
|
|
|
420
430
|
ElectricalPowerStorage: ElectricalPowerStorageRangeV1 | None = None
|
|
421
431
|
LowVoltageElectricalDistribution: LowVoltageElectricalDistributionRangeV1 | None = None
|
|
@@ -423,3 +433,4 @@ class ElectricalRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
|
423
433
|
ElectricPower: ElectricPowerRangeV1 | None = None
|
|
424
434
|
Lighting: LightingRangeV1 | None = None
|
|
425
435
|
ElectricalConduit: ElectricalConduitRangeV1 | None = None
|
|
436
|
+
OtherElectricalEquipment: OtherElectricalEquipmentRangeV1 | None = None
|
|
@@ -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
|
|
@@ -326,10 +326,16 @@ class ElectricalConduitV1(BaseOpenEpdHierarchicalSpec, ConduitMixin):
|
|
|
326
326
|
_EXT_VERSION = "1.1"
|
|
327
327
|
|
|
328
328
|
|
|
329
|
+
class OtherElectricalEquipmentV1(BaseOpenEpdHierarchicalSpec):
|
|
330
|
+
"""Other Electrical Equipment."""
|
|
331
|
+
|
|
332
|
+
_EXT_VERSION = "1.0"
|
|
333
|
+
|
|
334
|
+
|
|
329
335
|
class ElectricalV1(BaseOpenEpdHierarchicalSpec):
|
|
330
336
|
"""Electric power and equipment."""
|
|
331
337
|
|
|
332
|
-
_EXT_VERSION = "1.
|
|
338
|
+
_EXT_VERSION = "1.2"
|
|
333
339
|
|
|
334
340
|
# Nested specs:
|
|
335
341
|
ElectricalPowerStorage: ElectricalPowerStorageV1 | None = None
|
|
@@ -338,3 +344,4 @@ class ElectricalV1(BaseOpenEpdHierarchicalSpec):
|
|
|
338
344
|
ElectricPower: ElectricPowerV1 | None = None
|
|
339
345
|
Lighting: LightingV1 | None = None
|
|
340
346
|
ElectricalConduit: ElectricalConduitV1 | None = None
|
|
347
|
+
OtherElectricalEquipment: OtherElectricalEquipmentV1 | None = None
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
openepd/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dvvtd4,620
|
|
2
|
-
openepd/__version__.py,sha256=
|
|
2
|
+
openepd/__version__.py,sha256=nxitozeMrGujtN03G85IeTSzwzKLY1-NdBqX4axAPKA,639
|
|
3
3
|
openepd/api/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dvvtd4,620
|
|
4
4
|
openepd/api/average_dataset/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dvvtd4,620
|
|
5
5
|
openepd/api/average_dataset/generic_estimate_sync_api.py,sha256=mjTT8eGtfj6Fgp-wcs0cCWA7DJo1KL_iQ75rgKkaY3c,8037
|
|
@@ -54,12 +54,12 @@ openepd/model/lcia.py,sha256=6o6GNwLaQaWyYAXCnHl2aAgDa12_v7DwpME5BfVMezk,32780
|
|
|
54
54
|
openepd/model/org.py,sha256=ij_GEFEShRh-k4o29gSowiaJbCuyNqWu61YL3BNq0FM,9369
|
|
55
55
|
openepd/model/pcr.py,sha256=cu3EakCAjBCkcb_AaLXB-xEjY0mlG-wJe74zGc5tdS0,5637
|
|
56
56
|
openepd/model/specs/README.md,sha256=UGhSiFJ9hOxT1mZl-5ZrhkOrPKf1W_gcu5CI9hzV7LU,2430
|
|
57
|
-
openepd/model/specs/__init__.py,sha256
|
|
57
|
+
openepd/model/specs/__init__.py,sha256=-3uaImbGfOkRdpHQkhHe0eimAg0UBntR3WiT21Pmt1I,3837
|
|
58
58
|
openepd/model/specs/asphalt.py,sha256=Vj9q6ZDwl6Mv8XX_PWVuqVwDIzQ7MEIamysF5cmYteQ,3536
|
|
59
59
|
openepd/model/specs/base.py,sha256=0dwoChpyj-vnsMlaSEpklZnJkK9C05GbuTYi71AS_FY,2779
|
|
60
60
|
openepd/model/specs/concrete.py,sha256=gjly5f7QEuaKnYZStMm0CisU0Us1PUa2HmxPyhhmuO0,5573
|
|
61
61
|
openepd/model/specs/enums.py,sha256=o_9Li-T2CrL73ugiELj_JnI4NqrrgR0rhCswpVR7IS4,63828
|
|
62
|
-
openepd/model/specs/range/__init__.py,sha256=
|
|
62
|
+
openepd/model/specs/range/__init__.py,sha256=BizCeVTZUxzCosJdH5AUDMlATOfDEkzdDz97DRkBsVg,5572
|
|
63
63
|
openepd/model/specs/range/accessories.py,sha256=hZYz8mvAqrfLFiOIZ9qQZ59zmEiu0xE61Ko9cQ7NSKU,2498
|
|
64
64
|
openepd/model/specs/range/aggregates.py,sha256=wnGI6AxtQaaYgCGvqYUuM94JVOBipCBRvFLTwpflsyA,2555
|
|
65
65
|
openepd/model/specs/range/aluminium.py,sha256=6fvrm2cyToG_pf7B_vl6QPYjoyWFSctEA8CIi8E1ys4,2741
|
|
@@ -70,7 +70,7 @@ openepd/model/specs/range/cladding.py,sha256=7sk1wE3V_yt_nwvLFSnIZMjJ5d7OCbMh2MY
|
|
|
70
70
|
openepd/model/specs/range/cmu.py,sha256=Xi_YL58VPBgfW0I6jqRwsIxnMoVztRfx1IFn3EP9MlM,1851
|
|
71
71
|
openepd/model/specs/range/concrete.py,sha256=PnvgMzshcB5nvLYMkT41PzixpEtiYtAGOGLixvtEQ5Q,7685
|
|
72
72
|
openepd/model/specs/range/conveying_equipment.py,sha256=BLuy_FhgERau3fSaGOuP7ZZpe_PH7s0ttVUzB06BjtU,3216
|
|
73
|
-
openepd/model/specs/range/electrical.py,sha256=
|
|
73
|
+
openepd/model/specs/range/electrical.py,sha256=WSzVi5tkqtulmqZc8xKh0HjdgBFjONFeo1tEFWKyw0Q,12185
|
|
74
74
|
openepd/model/specs/range/electrical_transmission_and_distribution_equipment.py,sha256=xDdyLj6oJRmdybq7W91MtgE80FDpaG6ii5hE921aRGQ,2525
|
|
75
75
|
openepd/model/specs/range/electricity.py,sha256=yn_S25C_tZqseb8hiJ1yiHszu2mQ49FOFWWCqNpOBY0,997
|
|
76
76
|
openepd/model/specs/range/exterior_improvements.py,sha256=MRKRXB648H4DkK-kpvrcbNek2mSJKHSoMak_OC9iWVA,1720
|
|
@@ -88,7 +88,6 @@ 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=H4tZHcHyR2uUYHn-bQfLC6hR4tynVp_7EJbiI-YpK7Y,1001
|
|
92
91
|
openepd/model/specs/range/other_materials.py,sha256=RaLM3TrQ_woHJpYUug6XapSZmWfzYbkFlULegWfBab4,5962
|
|
93
92
|
openepd/model/specs/range/plumbing.py,sha256=pjdIOvQAat-8e0zqJM7gs30h131mqryU5uCGOdeTRaE,5382
|
|
94
93
|
openepd/model/specs/range/precast_concrete.py,sha256=i766QYGjnl5_1Ip_6_-x1QpCXSybM0bjN4ESq2njIQ0,3820
|
|
@@ -98,7 +97,7 @@ openepd/model/specs/range/thermal_moisture_protection.py,sha256=cdr610ZdOlbd3LYz
|
|
|
98
97
|
openepd/model/specs/range/utility_piping.py,sha256=doRcQRfBWvHX7FDDYk-bEU5rVCS_vjZ_5gKslI0xR7Y,2671
|
|
99
98
|
openepd/model/specs/range/wood.py,sha256=WIZOSixS1hlmI66XpL9PhVRZ3ST423A_ihCz2CEbuCk,6914
|
|
100
99
|
openepd/model/specs/range/wood_joists.py,sha256=PVGJZPdaI685rUI6TS3MZrAFkeMckFGpCYTNJLBr6IM,1786
|
|
101
|
-
openepd/model/specs/singular/__init__.py,sha256=
|
|
100
|
+
openepd/model/specs/singular/__init__.py,sha256=jlivBY6OZShPAWCoh-0AUIPO45deG-9Yk1MKwv2Z44s,12506
|
|
102
101
|
openepd/model/specs/singular/accessories.py,sha256=xcuSJrG84oTm_w76_wlv_sItfK36gSyDmUD2TnpZnVE,2013
|
|
103
102
|
openepd/model/specs/singular/aggregates.py,sha256=n_AbZK6TJHJ6boyMz6AyikUkMiNlq8G_NOcqEy_A-Sg,2975
|
|
104
103
|
openepd/model/specs/singular/aluminium.py,sha256=rOFEzIVvR2t0QGLN3Zk_Pi_m4v2dMU4PoDQN1hULMn4,2524
|
|
@@ -113,7 +112,7 @@ openepd/model/specs/singular/conveying_equipment.py,sha256=Hcy1zcXKsGIuh303xiRJw
|
|
|
113
112
|
openepd/model/specs/singular/deprecated/__init__.py,sha256=NufJ5lJeuWQ_aV7tHIX_H_StU4fNdGkcEaCA64FOcsA,2619
|
|
114
113
|
openepd/model/specs/singular/deprecated/concrete.py,sha256=xqHxwFUzy0XEa66e1N1Z3aKt6hhnHhbJ76XiRoe0wtQ,5604
|
|
115
114
|
openepd/model/specs/singular/deprecated/steel.py,sha256=xqp6rqA49ARY7uvObvnNh-y9cN0WCy0Qz3sMuuIBXPY,3647
|
|
116
|
-
openepd/model/specs/singular/electrical.py,sha256=
|
|
115
|
+
openepd/model/specs/singular/electrical.py,sha256=URg3d-Gy8hrmlY-Mj9Vf09mEAtxHmdZxzgWdSa1ptcc,11798
|
|
117
116
|
openepd/model/specs/singular/electrical_transmission_and_distribution_equipment.py,sha256=oZYyHgnXn9RH3YzltUEDiiQKrin2mvMlTgC3OhxV7DY,1978
|
|
118
117
|
openepd/model/specs/singular/electricity.py,sha256=f1cJ9eklNUf97khCIZiT5-z8V_TbOcvH2me_1UTQVrE,823
|
|
119
118
|
openepd/model/specs/singular/exterior_improvements.py,sha256=f_xJJCVVAlHi5A7v1x9Xu_CIht4M-PstAtabWxDxLMA,1695
|
|
@@ -132,7 +131,6 @@ openepd/model/specs/singular/mixins/conduit_mixin.py,sha256=H5rbXIy3lpiU_Rub3_f7
|
|
|
132
131
|
openepd/model/specs/singular/network_infrastructure.py,sha256=QGMIFzexHH94phkFw7iYl-fTZ_514dwYgvC-2sHjOZw,9316
|
|
133
132
|
openepd/model/specs/singular/non_construction.py,sha256=VW_dP5I8AUkwa923d2r9X8S78k6OUA5rU0UAypUX8t8,1634
|
|
134
133
|
openepd/model/specs/singular/openings.py,sha256=8XI9W-4h9oK1_hWNVOzNwvWxIZdAEze0A8ach5hThSU,19794
|
|
135
|
-
openepd/model/specs/singular/other_electrical_equipment.py,sha256=FX7p4rMuUbTrz1yDwKkS-Z6odohoq-zCw6SU3Kw5ISs,814
|
|
136
134
|
openepd/model/specs/singular/other_materials.py,sha256=5KbH-db7-FpHiinTRcrGLcIDDkn790a3Mem5ZPpwcsA,4908
|
|
137
135
|
openepd/model/specs/singular/plumbing.py,sha256=dP6r7xy2yeP8ICEBN79CfJqyDiuwpTtDnURBfWmFWPs,4639
|
|
138
136
|
openepd/model/specs/singular/precast_concrete.py,sha256=25vn5UxiQbhsNisqBF9_GYASMl3D1iuDWxfnV5HOV4k,7567
|
|
@@ -156,7 +154,7 @@ openepd/utils/mapping/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dv
|
|
|
156
154
|
openepd/utils/mapping/common.py,sha256=hxfN-WW2WLwE_agQzf_mhvz6OHq5WWlr24uZ1S81k4Y,8426
|
|
157
155
|
openepd/utils/mapping/geography.py,sha256=1_-dvLk11Hqn-K58yUI5pQ5X5gsnJPFlFT7JK2Rdoeg,2396
|
|
158
156
|
openepd/utils/markdown.py,sha256=RQmudPhb4QU1I4-S-VV2WFbzzq2Po09kbpjjKbwkA9E,1830
|
|
159
|
-
openepd-7.
|
|
160
|
-
openepd-7.
|
|
161
|
-
openepd-7.
|
|
162
|
-
openepd-7.
|
|
157
|
+
openepd-7.13.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
158
|
+
openepd-7.13.0.dist-info/METADATA,sha256=L_MQy3vYZ83yVCZblQ7-I5dwbIeEzbu-mxsyiUlA1hQ,9811
|
|
159
|
+
openepd-7.13.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
160
|
+
openepd-7.13.0.dist-info/RECORD,,
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
#
|
|
2
|
-
# Copyright 2025 by C Change Labs Inc. www.c-change-labs.com
|
|
3
|
-
#
|
|
4
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
# you may not use this file except in compliance with the License.
|
|
6
|
-
# You may obtain a copy of the License at
|
|
7
|
-
#
|
|
8
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
#
|
|
10
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
# See the License for the specific language governing permissions and
|
|
14
|
-
# limitations under the License.
|
|
15
|
-
#
|
|
16
|
-
__all__ = ("OtherElectricalEquipmentRangeV1",)
|
|
17
|
-
|
|
18
|
-
# NB! This is a generated code. Do not edit it manually. Please see src/openepd/model/specs/README.md
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
class OtherElectricalEquipmentRangeV1(BaseOpenEpdHierarchicalSpec):
|
|
25
|
-
"""
|
|
26
|
-
Other Electrical Equipment.
|
|
27
|
-
|
|
28
|
-
Range version.
|
|
29
|
-
"""
|
|
30
|
-
|
|
31
|
-
_EXT_VERSION = "1.0"
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
#
|
|
2
|
-
# Copyright 2025 by C Change Labs Inc. www.c-change-labs.com
|
|
3
|
-
#
|
|
4
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
# you may not use this file except in compliance with the License.
|
|
6
|
-
# You may obtain a copy of the License at
|
|
7
|
-
#
|
|
8
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
#
|
|
10
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
# See the License for the specific language governing permissions and
|
|
14
|
-
# limitations under the License.
|
|
15
|
-
#
|
|
16
|
-
from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
class OtherElectricalEquipmentV1(BaseOpenEpdHierarchicalSpec):
|
|
20
|
-
"""Other Electrical Equipment."""
|
|
21
|
-
|
|
22
|
-
_EXT_VERSION = "1.0"
|
|
File without changes
|
|
File without changes
|