foresight-cli 0.1.3__tar.gz → 0.1.4__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.
- {foresight_cli-0.1.3 → foresight_cli-0.1.4}/PKG-INFO +25 -3
- {foresight_cli-0.1.3 → foresight_cli-0.1.4}/README.md +24 -2
- {foresight_cli-0.1.3 → foresight_cli-0.1.4}/foresight_cli.egg-info/PKG-INFO +25 -3
- {foresight_cli-0.1.3 → foresight_cli-0.1.4}/pyproject.toml +1 -1
- {foresight_cli-0.1.3 → foresight_cli-0.1.4}/LICENSE +0 -0
- {foresight_cli-0.1.3 → foresight_cli-0.1.4}/foresight/__init__.py +0 -0
- {foresight_cli-0.1.3 → foresight_cli-0.1.4}/foresight/cli.py +0 -0
- {foresight_cli-0.1.3 → foresight_cli-0.1.4}/foresight/collector.py +0 -0
- {foresight_cli-0.1.3 → foresight_cli-0.1.4}/foresight/forecaster.py +0 -0
- {foresight_cli-0.1.3 → foresight_cli-0.1.4}/foresight/storage.py +0 -0
- {foresight_cli-0.1.3 → foresight_cli-0.1.4}/foresight_cli.egg-info/SOURCES.txt +0 -0
- {foresight_cli-0.1.3 → foresight_cli-0.1.4}/foresight_cli.egg-info/dependency_links.txt +0 -0
- {foresight_cli-0.1.3 → foresight_cli-0.1.4}/foresight_cli.egg-info/entry_points.txt +0 -0
- {foresight_cli-0.1.3 → foresight_cli-0.1.4}/foresight_cli.egg-info/requires.txt +0 -0
- {foresight_cli-0.1.3 → foresight_cli-0.1.4}/foresight_cli.egg-info/top_level.txt +0 -0
- {foresight_cli-0.1.3 → foresight_cli-0.1.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: foresight-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Predict system resource exhaustion before it happens.
|
|
5
5
|
Author: Rishi Garg
|
|
6
6
|
License: MIT License
|
|
@@ -122,6 +122,28 @@ pip install foresight-cli
|
|
|
122
122
|
|
|
123
123
|
That's it. The `foresight` command is now available globally.
|
|
124
124
|
|
|
125
|
+
### ⚠️ Windows Users — If `foresight` is Not Recognized
|
|
126
|
+
|
|
127
|
+
This is a common Windows issue. After installing, if you see:
|
|
128
|
+
```
|
|
129
|
+
foresight : The term 'foresight' is not recognized...
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
Run this **once** in PowerShell to fix it permanently:
|
|
133
|
+
|
|
134
|
+
```powershell
|
|
135
|
+
[System.Environment]::SetEnvironmentVariable(
|
|
136
|
+
"Path",
|
|
137
|
+
$env:Path + ";$env:APPDATA\Python\Python310\Scripts",
|
|
138
|
+
"User"
|
|
139
|
+
)
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
Then **close and reopen your terminal.** Done — works forever after that.
|
|
143
|
+
|
|
144
|
+
> 💡 Replace `Python310` with your version. Check with `python --version`.
|
|
145
|
+
> For example Python 3.11 → `Python311`, Python 3.12 → `Python312`.
|
|
146
|
+
|
|
125
147
|
### Collect Data
|
|
126
148
|
|
|
127
149
|
```bash
|
|
@@ -321,8 +343,8 @@ Contributions are welcome. Please read [CONTRIBUTING.md](CONTRIBUTING.md) first.
|
|
|
321
343
|
## 👨💻 Author
|
|
322
344
|
|
|
323
345
|
Built by **Rishi Garg**
|
|
324
|
-
BTech Software Engineering (Batch of 2029), Delhi Technological University
|
|
325
|
-
Member
|
|
346
|
+
BTech, Software Engineering (Batch of 2029), Delhi Technological University,
|
|
347
|
+
Member @[AIMS-DTU](https://aimsdtu.in) — AI/ML Society of DTU
|
|
326
348
|
|
|
327
349
|
*Built as a portfolio and learning project with a focus on
|
|
328
350
|
time-series forecasting, system programming, and open-source contribution.*
|
|
@@ -70,6 +70,28 @@ pip install foresight-cli
|
|
|
70
70
|
|
|
71
71
|
That's it. The `foresight` command is now available globally.
|
|
72
72
|
|
|
73
|
+
### ⚠️ Windows Users — If `foresight` is Not Recognized
|
|
74
|
+
|
|
75
|
+
This is a common Windows issue. After installing, if you see:
|
|
76
|
+
```
|
|
77
|
+
foresight : The term 'foresight' is not recognized...
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
Run this **once** in PowerShell to fix it permanently:
|
|
81
|
+
|
|
82
|
+
```powershell
|
|
83
|
+
[System.Environment]::SetEnvironmentVariable(
|
|
84
|
+
"Path",
|
|
85
|
+
$env:Path + ";$env:APPDATA\Python\Python310\Scripts",
|
|
86
|
+
"User"
|
|
87
|
+
)
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
Then **close and reopen your terminal.** Done — works forever after that.
|
|
91
|
+
|
|
92
|
+
> 💡 Replace `Python310` with your version. Check with `python --version`.
|
|
93
|
+
> For example Python 3.11 → `Python311`, Python 3.12 → `Python312`.
|
|
94
|
+
|
|
73
95
|
### Collect Data
|
|
74
96
|
|
|
75
97
|
```bash
|
|
@@ -269,8 +291,8 @@ Contributions are welcome. Please read [CONTRIBUTING.md](CONTRIBUTING.md) first.
|
|
|
269
291
|
## 👨💻 Author
|
|
270
292
|
|
|
271
293
|
Built by **Rishi Garg**
|
|
272
|
-
BTech Software Engineering (Batch of 2029), Delhi Technological University
|
|
273
|
-
Member
|
|
294
|
+
BTech, Software Engineering (Batch of 2029), Delhi Technological University,
|
|
295
|
+
Member @[AIMS-DTU](https://aimsdtu.in) — AI/ML Society of DTU
|
|
274
296
|
|
|
275
297
|
*Built as a portfolio and learning project with a focus on
|
|
276
298
|
time-series forecasting, system programming, and open-source contribution.*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: foresight-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Predict system resource exhaustion before it happens.
|
|
5
5
|
Author: Rishi Garg
|
|
6
6
|
License: MIT License
|
|
@@ -122,6 +122,28 @@ pip install foresight-cli
|
|
|
122
122
|
|
|
123
123
|
That's it. The `foresight` command is now available globally.
|
|
124
124
|
|
|
125
|
+
### ⚠️ Windows Users — If `foresight` is Not Recognized
|
|
126
|
+
|
|
127
|
+
This is a common Windows issue. After installing, if you see:
|
|
128
|
+
```
|
|
129
|
+
foresight : The term 'foresight' is not recognized...
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
Run this **once** in PowerShell to fix it permanently:
|
|
133
|
+
|
|
134
|
+
```powershell
|
|
135
|
+
[System.Environment]::SetEnvironmentVariable(
|
|
136
|
+
"Path",
|
|
137
|
+
$env:Path + ";$env:APPDATA\Python\Python310\Scripts",
|
|
138
|
+
"User"
|
|
139
|
+
)
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
Then **close and reopen your terminal.** Done — works forever after that.
|
|
143
|
+
|
|
144
|
+
> 💡 Replace `Python310` with your version. Check with `python --version`.
|
|
145
|
+
> For example Python 3.11 → `Python311`, Python 3.12 → `Python312`.
|
|
146
|
+
|
|
125
147
|
### Collect Data
|
|
126
148
|
|
|
127
149
|
```bash
|
|
@@ -321,8 +343,8 @@ Contributions are welcome. Please read [CONTRIBUTING.md](CONTRIBUTING.md) first.
|
|
|
321
343
|
## 👨💻 Author
|
|
322
344
|
|
|
323
345
|
Built by **Rishi Garg**
|
|
324
|
-
BTech Software Engineering (Batch of 2029), Delhi Technological University
|
|
325
|
-
Member
|
|
346
|
+
BTech, Software Engineering (Batch of 2029), Delhi Technological University,
|
|
347
|
+
Member @[AIMS-DTU](https://aimsdtu.in) — AI/ML Society of DTU
|
|
326
348
|
|
|
327
349
|
*Built as a portfolio and learning project with a focus on
|
|
328
350
|
time-series forecasting, system programming, and open-source contribution.*
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|