openepd 6.31.0__py3-none-any.whl → 6.31.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/range/electrical.py +1 -0
- openepd/model/specs/range/other_electrical_equipment.py +18 -0
- openepd/model/specs/singular/electrical.py +33 -0
- openepd/model/specs/singular/other_electrical_equipment.py +18 -0
- {openepd-6.31.0.dist-info → openepd-6.31.1.dist-info}/METADATA +1 -1
- {openepd-6.31.0.dist-info → openepd-6.31.1.dist-info}/RECORD +9 -7
- {openepd-6.31.0.dist-info → openepd-6.31.1.dist-info}/LICENSE +0 -0
- {openepd-6.31.0.dist-info → openepd-6.31.1.dist-info}/WHEEL +0 -0
openepd/__version__.py
CHANGED
|
@@ -0,0 +1,18 @@
|
|
|
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
|
+
|
|
17
|
+
# Deprecated import: This import is kept for backward compatibility and should be removed in the future.
|
|
18
|
+
from .electrical import OtherElectricalEquipmentRangeV1 # noqa: F401
|
|
@@ -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
|
from openepd.compat.pydantic import pyd
|
|
17
50
|
from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
|
|
18
51
|
from openepd.model.specs.enums import CableTraysMaterial, EnergySource, RacewaysMaterial
|
|
@@ -0,0 +1,18 @@
|
|
|
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
|
+
|
|
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=fhxfEyEurLvSfvQci-vb3njzl_lvhcLXiZrecCOaMU8,794
|
|
2
|
-
openepd/__version__.py,sha256=
|
|
2
|
+
openepd/__version__.py,sha256=NgJSN9dQLekpi1WW1Gh2L5KcdSamZVPj3Hxrdpg45Fs,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
|
|
@@ -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=00fqX7KuM76ZZpL6yyhAHiDNkLgUFvyHfOCsE3Q62io,12139
|
|
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
|
|
@@ -91,6 +91,7 @@ openepd/model/specs/range/mixins/access_flooring_mixin.py,sha256=JEcvlmKv3R5dVIM
|
|
|
91
91
|
openepd/model/specs/range/network_infrastructure.py,sha256=aqXEIGqFy0gNCM_ftd3J6aT3FZf9JlT0SBOImhdkTg0,8498
|
|
92
92
|
openepd/model/specs/range/non_construction.py,sha256=PDJn1QKQR9wHYr-KtWIxji-41IKFSeMZUS1fSjy4QGU,1664
|
|
93
93
|
openepd/model/specs/range/openings.py,sha256=4MeNkbMAhtcGbiG5lxHCSRSdJ4F42uBMSXp5XJFODj4,15590
|
|
94
|
+
openepd/model/specs/range/other_electrical_equipment.py,sha256=NM7mlm38W9PTFMPPvvX5IaPMR2CCbpVO6Yi3i9iBb78,796
|
|
94
95
|
openepd/model/specs/range/other_materials.py,sha256=EAKHR9VJAkoqHL0FL2x-7PBvBxDD07drqoVLhBlaYzw,5823
|
|
95
96
|
openepd/model/specs/range/plumbing.py,sha256=jQKrKYGDR33uh3ffo6uVyt3xuSmexkkelfNh_-omNCg,5342
|
|
96
97
|
openepd/model/specs/range/precast_concrete.py,sha256=nn1U1XwKqqzY1cOPP3KqHZMJq4Ut9RAox4SMVYBa5B8,3763
|
|
@@ -115,7 +116,7 @@ openepd/model/specs/singular/conveying_equipment.py,sha256=AK_KdGyBDh0_Dl3YCkIyf
|
|
|
115
116
|
openepd/model/specs/singular/deprecated/__init__.py,sha256=f8I04fHO5QWpNtorrCgbUXz4r0B0zgsk8zDUfXu_i80,2635
|
|
116
117
|
openepd/model/specs/singular/deprecated/concrete.py,sha256=swSOfViIvy7z923C6uHBcIZrv_JRMv7wSJHpg9PGAJg,5265
|
|
117
118
|
openepd/model/specs/singular/deprecated/steel.py,sha256=0A3Y50XpLsPt105t_H8BzByaDUbLoX1o_QIr566JfB4,3499
|
|
118
|
-
openepd/model/specs/singular/electrical.py,sha256=
|
|
119
|
+
openepd/model/specs/singular/electrical.py,sha256=mGWddo7MO_S632Os4cpZnJG7bxxCghMB9n1x4g7Lnkk,12148
|
|
119
120
|
openepd/model/specs/singular/electrical_transmission_and_distribution_equipment.py,sha256=oZYyHgnXn9RH3YzltUEDiiQKrin2mvMlTgC3OhxV7DY,1978
|
|
120
121
|
openepd/model/specs/singular/electricity.py,sha256=f1cJ9eklNUf97khCIZiT5-z8V_TbOcvH2me_1UTQVrE,823
|
|
121
122
|
openepd/model/specs/singular/exterior_improvements.py,sha256=tf9lHxb5Mj9Sf3WGjR1wq-mKcyqlvvVKpZG2W6cLcxo,1711
|
|
@@ -134,6 +135,7 @@ openepd/model/specs/singular/mixins/conduit_mixin.py,sha256=tj6p-MF84rg4LGxXPC65
|
|
|
134
135
|
openepd/model/specs/singular/network_infrastructure.py,sha256=eB3p1zu1u15Ly5iuyyJ4xl3Z1GuBCRVU18Wpz8FWZrg,8521
|
|
135
136
|
openepd/model/specs/singular/non_construction.py,sha256=VW_dP5I8AUkwa923d2r9X8S78k6OUA5rU0UAypUX8t8,1634
|
|
136
137
|
openepd/model/specs/singular/openings.py,sha256=IoLBp003qvWZOeTeIPtVPcq4AXdY3ZSSzRK10mnnJac,19183
|
|
138
|
+
openepd/model/specs/singular/other_electrical_equipment.py,sha256=55BCXX5GPxYPea_8Ro7hs_gec4ZMZJA72KEuejQqg3Y,791
|
|
137
139
|
openepd/model/specs/singular/other_materials.py,sha256=iD_AeC8vHXAQuvw62TrVOyoRS6uy5LFb_2PSODDn2hk,4759
|
|
138
140
|
openepd/model/specs/singular/plumbing.py,sha256=fHmKyy1aQxu8NZ3RTwxuA0CCERMgwVUdMA74kMDVc8o,4568
|
|
139
141
|
openepd/model/specs/singular/precast_concrete.py,sha256=W2tKf0vOnAdfeGc1n7Pk8yx9jy44afdFB0cbwHjw1HI,7327
|
|
@@ -156,7 +158,7 @@ openepd/utils/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dvvtd4,620
|
|
|
156
158
|
openepd/utils/functional.py,sha256=sm7od2_UE-cNToezBlwFQ1TCUJub1tz6VykA1X8XH-I,1274
|
|
157
159
|
openepd/utils/mapping/__init__.py,sha256=9THJcV3LT7JDBOMz1px-QFf_sdJ0LOqJ5dmA9Dvvtd4,620
|
|
158
160
|
openepd/utils/mapping/common.py,sha256=WphCzwQQlzX11tUk88Ubyq3QPBLvH0tBPSIuH0kmiug,7339
|
|
159
|
-
openepd-6.31.
|
|
160
|
-
openepd-6.31.
|
|
161
|
-
openepd-6.31.
|
|
162
|
-
openepd-6.31.
|
|
161
|
+
openepd-6.31.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
162
|
+
openepd-6.31.1.dist-info/METADATA,sha256=PIE-lDX5YPJSNeLHNt3sKjTCQIl1vidxMMnK0r8k2RQ,9827
|
|
163
|
+
openepd-6.31.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
164
|
+
openepd-6.31.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|