torchhe 0.1.7__tar.gz

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.
torchhe-0.1.7/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026
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.
torchhe-0.1.7/PKG-INFO ADDED
@@ -0,0 +1,75 @@
1
+ Metadata-Version: 2.4
2
+ Name: torchhe
3
+ Version: 0.1.7
4
+ Summary: Topic-wise practical code printer for PySpark, time series, MongoDB, PL, CloudSim, and more.
5
+ Author: admin
6
+ License: MIT
7
+ Keywords: education,practicals,pyspark,cloudsim,time-series
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.7
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.7
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+ Dynamic: license-file
16
+
17
+ # torchhe
18
+
19
+ This library exposes two main classes:
20
+
21
+ - `DSTL`
22
+ - `PL`
23
+
24
+ Example:
25
+
26
+ ```python
27
+ from torchhe import DSTL, PL
28
+
29
+ dstl = DSTL()
30
+ pl = PL()
31
+
32
+ dstl.listing()
33
+ dstl.time_series.show()
34
+ dstl.mongodb.instructions()
35
+
36
+ pl.listing()
37
+ pl.activation_functions.top()
38
+ pl.activation_functions.basic_activation_function_visualizer()
39
+ pl.cloudsim.instructions()
40
+ pl.cloudsim.priority_based_cloudlet_scheduling()
41
+ pl.cloud_apps.employee_record_management_system()
42
+ ```
43
+
44
+ ## Structure
45
+
46
+ - `DSTL`
47
+ - `pyspark`
48
+ - `time_series`
49
+ - `mongodb`
50
+ - `PL`
51
+ - `activation_functions`
52
+ - `neural_networks`
53
+ - `fuzzy_logic`
54
+ - `cloud_computing`
55
+ - `cloud_apps`
56
+ - `cloudsim`
57
+ - `cloudlet`
58
+ - `apex`
59
+
60
+ Each PL topic has:
61
+
62
+ - `top()` to print the related problem statements from `PROBLEM STATEMENT.pdf`
63
+ - topic-specific methods to print the matching code/content from `Programming Lab Practice Programs.pdf`
64
+
65
+ Extra helpers:
66
+
67
+ - `listing()` prints available groups or methods
68
+ - `instructions()` prints setup or run instructions where available
69
+
70
+ Notes:
71
+
72
+ - The library publishes as `torchhe` and supports `from torchhe import DSTL, PL`.
73
+ - Internally the packaged content is still sourced from the `pysparke` module tree.
74
+ - The library prints the extracted text as stored in the repo.
75
+ - Some PL content comes from OCR text extracted from PDF, so spacing/formatting may look imperfect.
@@ -0,0 +1,59 @@
1
+ # torchhe
2
+
3
+ This library exposes two main classes:
4
+
5
+ - `DSTL`
6
+ - `PL`
7
+
8
+ Example:
9
+
10
+ ```python
11
+ from torchhe import DSTL, PL
12
+
13
+ dstl = DSTL()
14
+ pl = PL()
15
+
16
+ dstl.listing()
17
+ dstl.time_series.show()
18
+ dstl.mongodb.instructions()
19
+
20
+ pl.listing()
21
+ pl.activation_functions.top()
22
+ pl.activation_functions.basic_activation_function_visualizer()
23
+ pl.cloudsim.instructions()
24
+ pl.cloudsim.priority_based_cloudlet_scheduling()
25
+ pl.cloud_apps.employee_record_management_system()
26
+ ```
27
+
28
+ ## Structure
29
+
30
+ - `DSTL`
31
+ - `pyspark`
32
+ - `time_series`
33
+ - `mongodb`
34
+ - `PL`
35
+ - `activation_functions`
36
+ - `neural_networks`
37
+ - `fuzzy_logic`
38
+ - `cloud_computing`
39
+ - `cloud_apps`
40
+ - `cloudsim`
41
+ - `cloudlet`
42
+ - `apex`
43
+
44
+ Each PL topic has:
45
+
46
+ - `top()` to print the related problem statements from `PROBLEM STATEMENT.pdf`
47
+ - topic-specific methods to print the matching code/content from `Programming Lab Practice Programs.pdf`
48
+
49
+ Extra helpers:
50
+
51
+ - `listing()` prints available groups or methods
52
+ - `instructions()` prints setup or run instructions where available
53
+
54
+ Notes:
55
+
56
+ - The library publishes as `torchhe` and supports `from torchhe import DSTL, PL`.
57
+ - Internally the packaged content is still sourced from the `pysparke` module tree.
58
+ - The library prints the extracted text as stored in the repo.
59
+ - Some PL content comes from OCR text extracted from PDF, so spacing/formatting may look imperfect.
@@ -0,0 +1,30 @@
1
+ [build-system]
2
+ requires = ["setuptools>=69", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "torchhe"
7
+ version = "0.1.7"
8
+ description = "Topic-wise practical code printer for PySpark, time series, MongoDB, PL, CloudSim, and more."
9
+ readme = "README.md"
10
+ requires-python = ">=3.7"
11
+ authors = [
12
+ { name = "admin" }
13
+ ]
14
+ license = { text = "MIT" }
15
+ keywords = ["education", "practicals", "pyspark", "cloudsim", "time-series"]
16
+ classifiers = [
17
+ "Programming Language :: Python :: 3",
18
+ "Programming Language :: Python :: 3.7",
19
+ "License :: OSI Approved :: MIT License",
20
+ "Operating System :: OS Independent",
21
+ ]
22
+
23
+ [tool.setuptools]
24
+ include-package-data = true
25
+
26
+ [tool.setuptools.packages.find]
27
+ include = ["pysparke*", "torchhe*"]
28
+
29
+ [tool.setuptools.package-data]
30
+ pysparke = ["data/TY_Codes/**/*"]
@@ -0,0 +1,3 @@
1
+ from .library import DSTL, PL
2
+
3
+ __all__ = ["DSTL", "PL"]