psr-factory 4.1.0b1__py3-none-win_amd64.whl → 4.1.0b3__py3-none-win_amd64.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.
@@ -0,0 +1,108 @@
1
+ Metadata-Version: 2.4
2
+ Name: psr-factory
3
+ Version: 4.1.0b3
4
+ Summary: PSR database management module.
5
+ Author-email: "PSR Inc." <psrfactory@psr-inc.com>
6
+ License: MIT License
7
+
8
+ Copyright (c) 2025 PSR Factory
9
+
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ of this software and associated documentation files (the "Software"), to deal
12
+ in the Software without restriction, including without limitation the rights
13
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ copies of the Software, and to permit persons to whom the Software is
15
+ furnished to do so, subject to the following conditions:
16
+
17
+ The above copyright notice and this permission notice shall be included in all
18
+ copies or substantial portions of the Software.
19
+
20
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ SOFTWARE.
27
+
28
+ Project-URL: documentation, https://docs.psr-inc.com/factory/
29
+ Keywords: psr,factory,sddp
30
+ Classifier: Development Status :: 4 - Beta
31
+ Classifier: Programming Language :: C
32
+ Classifier: Programming Language :: C++
33
+ Classifier: Programming Language :: Python :: 3
34
+ Classifier: Programming Language :: Python :: 3.9
35
+ Classifier: Programming Language :: Python :: 3.10
36
+ Classifier: Programming Language :: Python :: 3.11
37
+ Classifier: Programming Language :: Python :: 3.12
38
+ Classifier: Programming Language :: Python :: 3.13
39
+ Classifier: Topic :: Software Development
40
+ Classifier: Topic :: Scientific/Engineering
41
+ Classifier: Operating System :: Microsoft :: Windows
42
+ Classifier: Operating System :: POSIX :: Linux
43
+ Classifier: License :: OSI Approved :: MIT License
44
+ Requires-Python: >=3.9
45
+ Description-Content-Type: text/markdown
46
+ License-File: LICENSE.txt
47
+ Dynamic: license-file
48
+
49
+ PSR Factory (version 4.1.0b3)
50
+ ============================
51
+
52
+ Factory is a library that helps to manage SDDP cases.
53
+ It contains functions that create, load, and save studies, and also functions that create,
54
+ access, and modify objects in a study.
55
+
56
+
57
+ Installation
58
+ ------------
59
+
60
+ ### System-wide installation
61
+
62
+ Open the command prompt and run the following command:
63
+ ```bash
64
+ pip install psr-factory
65
+ ```
66
+
67
+ Or, if the package directly from the wheel (whl) file:
68
+
69
+ ```bash
70
+ pip install psr_factory-4.1.0b3-py3-none-win_amd64.whl
71
+ ```
72
+
73
+ Factory will be available to all Python scripts in your system after importing it:
74
+
75
+ ```python
76
+ import psr.factory
77
+ ```
78
+
79
+
80
+ Usage sample
81
+ ------------
82
+
83
+ ```python
84
+ import psr.factory
85
+
86
+ study = psr.factory.load_study(r"C:\temp\my\study")
87
+ system_1 = study.find("System.*")[0]
88
+
89
+ battery = psr.factory.create("Battery")
90
+ battery.code = 1
91
+ battery.name = "Battery 1"
92
+ battery.set("InstalledCapacity", 10.0)
93
+ battery.set("RefSystem", system_1)
94
+ study.add(battery)
95
+
96
+ study.save(r"C:\temp\my\updated_study")
97
+ ```
98
+
99
+
100
+ Full documentation
101
+ ------------------
102
+
103
+ The full documentation and reference is available at [https://docs.psr-inc.com/factory/](https://docs.psr-inc.com/factory/).
104
+
105
+ Releases
106
+ --------
107
+
108
+ New releases can be found in the release notes at [https://psrenergy-docs.github.io/factory/releases.html](https://psrenergy-docs.github.io/factory/releases.html).
@@ -0,0 +1,31 @@
1
+ psr/apps/__init__.py,sha256=frSq1WIy5vIdU21xJIGX7U3XoAZRj0pcQmFb-R00b7I,228
2
+ psr/apps/apps.py,sha256=8jVxTFZ73KFk_PbY-8rZDD8HBONdCjt-jzsDJyu2P50,6921
3
+ psr/apps/version.py,sha256=vs459L6JsatAkUxna7BNG-vMCaXpO1Ye8c1bmkEx4U4,194
4
+ psr/cloud/__init__.py,sha256=inZMwG7O9Fca9hg1BhqYObOYtTTJOkpuTIuXnkHJZkI,246
5
+ psr/cloud/cloud.py,sha256=sl-Sbmhg7EPeECi1FH4fI12LGGzQA7eBtbb5zgINJ2A,42235
6
+ psr/cloud/data.py,sha256=3zWh1qnBNFfI8K3N8jZKqDnzHWMQ5llc_wwGMZ4FtKs,3548
7
+ psr/cloud/desktop.py,sha256=JFroCMEFV1Nz3has74n7OVrGCg2lS7Ev5bcjdw2hRxY,2980
8
+ psr/cloud/log.py,sha256=Dvhz1enIWlFWeaRK7JAAuZVPfODgoEIRNcHEmbEliyQ,1366
9
+ psr/cloud/status.py,sha256=vcI4B9S6wCt9maT5NNrVwYaEgGIvy6kkC1UVpJjYbtw,3607
10
+ psr/cloud/tempfile.py,sha256=1IOeye0eKWnmBynK5K5FMWiTaEVhn4GbQ8_y0THEva0,3893
11
+ psr/cloud/version.py,sha256=FMkUnJ7LLpNt9YmROO5l8D4w-g7A6-Fo0eI9JbYZh0o,192
12
+ psr/cloud/xml.py,sha256=dmBh4iRieORCctm1obz1EGA2QN-KkZlH5_dQfBud-AI,1847
13
+ psr/factory/__init__.py,sha256=IVy9wUtd7XwVWcncZkrnNFvxa6H-DdlVgggY6VReIPk,218
14
+ psr/factory/api.py,sha256=Ruz9klp70FJnsarb-Se5b5G5FAyqa11mBsP7CqBAzuo,95439
15
+ psr/factory/factory.dll,sha256=C4cVo0_k0GHWTkktG6_Eu_gg6rgsR7_RTgLJxd8PPPk,17828912
16
+ psr/factory/factory.pmd,sha256=r-2idBk98sKzDC-h0-nn6CF8Pr-mxz1RtnpEpvIEaU0,229581
17
+ psr/factory/factory.pmk,sha256=NzPpz4_bR3hvBAff9BWqf-6IWcHNwDd31PHUizo4YYs,555896
18
+ psr/factory/factorylib.py,sha256=Orcg4X47J3J1CNr0WEERucqsTJLqt0TV9VFFZXLv6WE,26978
19
+ psr/factory/libcurl-x64.dll,sha256=d8hRt8TBfeZxKiqQj1ZLxOjdgtZTawVMimzV3KGykRw,5328944
20
+ psr/factory/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
+ psr/psrfcommon/__init__.py,sha256=WXR560XQllIjtFpWd0jiJEbUAQIyh5-6lwj-42_J95c,200
22
+ psr/psrfcommon/psrfcommon.py,sha256=NABM5ahvyfSizDC9c0Vu9dVK1pD_vOzIGFHL1oz2E1o,1464
23
+ psr/psrfcommon/tempfile.py,sha256=5S13wa2DCLYTUdwbLm_KMBRnDRJ0WDlu8GO2BmZoNdg,3939
24
+ psr/runner/__init__.py,sha256=kI9HDX-B_LMQJUHHylFHas2rNpWfNNa0pZXoIvX_Alw,230
25
+ psr/runner/runner.py,sha256=fiuwKDRnqOLfV5UKJamLMZqm7PneeVjgEEmhpZbMm98,26340
26
+ psr/runner/version.py,sha256=mch2Y8anSXGMn9w72Z78PhSRhOyn55EwaoLAYhY4McE,194
27
+ psr_factory-4.1.0b3.dist-info/licenses/LICENSE.txt,sha256=N6mqZK2Ft3iXGHj-by_MHC_dJo9qwn0URjakEPys3H4,1089
28
+ psr_factory-4.1.0b3.dist-info/METADATA,sha256=e3ajWcmlXdJYZfnNBcpHI6cjg8lMBx6Ay1pm1XDdwuE,3721
29
+ psr_factory-4.1.0b3.dist-info/WHEEL,sha256=GRAwO4abswPoD8u6X5Ix8yKoy-wTIXRf_V-PAIDNIsM,97
30
+ psr_factory-4.1.0b3.dist-info/top_level.txt,sha256=Jb393O96WQk3b5D1gMcrZBLKJJgZpzNjTPoldUi00ck,4
31
+ psr_factory-4.1.0b3.dist-info/RECORD,,
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 PSR Factory
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -1,75 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: psr-factory
3
- Version: 4.1.0b1
4
- Summary: PSR database management module.
5
- Author-email: "PSR Inc." <psrfactory@psr-inc.com>
6
- Project-URL: documentation, https://docs.psr-inc.com/factory/
7
- Classifier: Programming Language :: Python :: 3
8
- Requires-Python: >=3.9
9
- Description-Content-Type: text/markdown
10
-
11
- PSR Factory (version 4.1.0.1)
12
- ============================
13
-
14
- Factory is a library that helps to manage SDDP cases.
15
- It contains functions that create, load, and save studies, and also functions that create,
16
- access, and modify objects in a study.
17
-
18
-
19
- Installation
20
- ------------
21
-
22
- ### System-wide installation
23
-
24
- Open the command prompt and run the following command:
25
-
26
- ```bash
27
- pip install psr_factory-4.1.0b1-py3-none-win_amd64.whl
28
- ```
29
-
30
- Factory will be available to all Python scripts in your system after importing it:
31
-
32
- ```python
33
- import psr.factory
34
- ```
35
-
36
- ### Local/project-specific usage
37
-
38
- Copy the folder `psr` and its contents to your project folder or a specific folder (e.g., `C:\path\to\factory`). Then, in your Python script, add the following lines:
39
-
40
- ```python
41
- import sys
42
- sys.path.append(r"C:\path\to\factory")
43
- import psr.factory
44
- ```
45
-
46
-
47
- Usage sample
48
- ------------
49
-
50
- ```python
51
- import psr.factory
52
-
53
- study = psr.factory.load_study(r"C:\temp\my\study")
54
- system_1 = study.find("System.*")[0]
55
-
56
- battery = psr.factory.create("Battery")
57
- battery.code = 1
58
- battery.name = "Battery 1"
59
- battery.set("InstalledCapacity", 10.0)
60
- battery.set("RefSystem", system_1)
61
- study.add(battery)
62
-
63
- study.save(r"C:\temp\my\updated_study")
64
- ```
65
-
66
-
67
- Full documentation
68
- ------------------
69
-
70
- The full documentation and reference is available at [https://docs.psr-inc.com/factory/](https://docs.psr-inc.com/manual/factory/).
71
-
72
- Releases
73
- --------
74
-
75
- New releases can be found in the release notes at [https://psrenergy-docs.github.io/factory/releases.html](https://psrenergy-docs.github.io/factory/releases.html).
@@ -1,11 +0,0 @@
1
- psr/factory/__init__.py,sha256=qTL9K1ZXBFl0gj6BDlOPYwpkSioRji2AdspIYiz0XTY,218
2
- psr/factory/api.py,sha256=a2iH0am4O9SStICiy0iID_s3OHX__fC2w0q9UczQUFk,95251
3
- psr/factory/factory.dll,sha256=mueQ_en8H4zUOg1f29MHeTXMJ6q6j1BxspeYBXu0ooo,17736240
4
- psr/factory/factory.pmd,sha256=3fGQyBFd16Msfn4ZJe8TDFc759XylW5HqQhdwsSReMM,228259
5
- psr/factory/factory.pmk,sha256=1AQ9L3PAPmCvFZaecjGH7psIa-SURZ7WNnZp1rCnL98,551552
6
- psr/factory/factorylib.py,sha256=7WK-g9K8juNoEwndCeTGYLMOV421QjO8Q0NlTqgvZzs,26839
7
- psr/factory/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
- psr_factory-4.1.0b1.dist-info/METADATA,sha256=0lLz3hKkYWc_KezxfGQj5C93-dbm3Q9NiO2O3nsSsXg,1956
9
- psr_factory-4.1.0b1.dist-info/WHEEL,sha256=GRAwO4abswPoD8u6X5Ix8yKoy-wTIXRf_V-PAIDNIsM,97
10
- psr_factory-4.1.0b1.dist-info/top_level.txt,sha256=Jb393O96WQk3b5D1gMcrZBLKJJgZpzNjTPoldUi00ck,4
11
- psr_factory-4.1.0b1.dist-info/RECORD,,