overload-cli 0.1.0__tar.gz → 0.1.1__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.
- {overload_cli-0.1.0 → overload_cli-0.1.1}/PKG-INFO +9 -1
- {overload_cli-0.1.0 → overload_cli-0.1.1}/README.md +8 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/docs/architecture.html +2 -2
- {overload_cli-0.1.0 → overload_cli-0.1.1}/docs/assertions.html +2 -2
- {overload_cli-0.1.0 → overload_cli-0.1.1}/docs/authentication.html +2 -2
- {overload_cli-0.1.0 → overload_cli-0.1.1}/docs/browser-ui.html +2 -2
- {overload_cli-0.1.0 → overload_cli-0.1.1}/docs/changelog.html +3 -3
- {overload_cli-0.1.0 → overload_cli-0.1.1}/docs/ci-cd.html +2 -2
- {overload_cli-0.1.0 → overload_cli-0.1.1}/docs/cli-reference.html +2 -2
- {overload_cli-0.1.0 → overload_cli-0.1.1}/docs/collections.html +2 -2
- {overload_cli-0.1.0 → overload_cli-0.1.1}/docs/configuration.html +2 -2
- {overload_cli-0.1.0 → overload_cli-0.1.1}/docs/contributing.html +2 -2
- {overload_cli-0.1.0 → overload_cli-0.1.1}/docs/getting-started.html +3 -3
- {overload_cli-0.1.0 → overload_cli-0.1.1}/docs/index.html +8 -2
- {overload_cli-0.1.0 → overload_cli-0.1.1}/docs/reports.html +2 -2
- {overload_cli-0.1.0 → overload_cli-0.1.1}/docs/test-patterns.html +2 -2
- {overload_cli-0.1.0 → overload_cli-0.1.1}/pyproject.toml +1 -1
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/__init__.py +1 -1
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/web/app.py +1 -1
- {overload_cli-0.1.0 → overload_cli-0.1.1}/.gitignore +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/AGENTS.md +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/CHANGELOG.md +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/LICENSE +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/docs/styles.css +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/__main__.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/cli.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/collection/__init__.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/collection/environment.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/collection/models.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/collection/parser.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/collection/variables.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/config_file.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/engine/__init__.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/engine/assertions.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/engine/auth.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/engine/events.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/engine/http_client.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/engine/load_patterns.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/engine/models.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/engine/rate_limiter.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/engine/runner.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/report/__init__.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/report/exporters.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/report/generator.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/report/templates/report.html +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/utils/__init__.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/utils/naming.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/web/__init__.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/web/routes/__init__.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/web/routes/api.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/web/routes/ws.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/web/static/css/app.css +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/web/static/js/app.js +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/web/static/js/charts.js +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/web/static/js/collection.js +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/web/static/js/runner.js +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/src/overload/web/templates/index.html +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/tests/test_api.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/tests/test_assertions.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/tests/test_auth.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/tests/test_collection_parser.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/tests/test_config_file.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/tests/test_http_client.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/tests/test_models.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/tests/test_report.py +0 -0
- {overload_cli-0.1.0 → overload_cli-0.1.1}/tests/test_variables.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: overload-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Free load testing tool that reads Postman collections — browser UI + CLI
|
|
5
5
|
Project-URL: Homepage, https://github.com/dprakash2101/overload
|
|
6
6
|
Project-URL: Repository, https://github.com/dprakash2101/overload
|
|
@@ -45,6 +45,14 @@ Free, open-source load testing tool that reads Postman collections. Run tests fr
|
|
|
45
45
|
|
|
46
46
|
---
|
|
47
47
|
|
|
48
|
+
## Why "Overload"?
|
|
49
|
+
|
|
50
|
+
Named Overload because that's exactly what it does to your server.
|
|
51
|
+
|
|
52
|
+
No metaphor. No brand committee. Just requests — a lot of them — all at once, until something interesting happens.
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
48
56
|
## Install
|
|
49
57
|
|
|
50
58
|
```bash
|
|
@@ -6,6 +6,14 @@ Free, open-source load testing tool that reads Postman collections. Run tests fr
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## Why "Overload"?
|
|
10
|
+
|
|
11
|
+
Named Overload because that's exactly what it does to your server.
|
|
12
|
+
|
|
13
|
+
No metaphor. No brand committee. Just requests — a lot of them — all at once, until something interesting happens.
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
9
17
|
## Install
|
|
10
18
|
|
|
11
19
|
```bash
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<a href="index.html" class="top-nav__logo">
|
|
21
21
|
<svg viewBox="0 0 32 32" fill="none"><circle cx="16" cy="16" r="14" stroke="url(#grd)" stroke-width="2.5"/><path d="M10 20L16 8l6 12" stroke="url(#grd)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/><defs><linearGradient id="grd" x1="0" y1="0" x2="32" y2="32"><stop stop-color="#818cf8"/><stop offset="1" stop-color="#06b6d4"/></linearGradient></defs></svg>
|
|
22
22
|
Overload
|
|
23
|
-
<span class="top-nav__badge">v0.1.
|
|
23
|
+
<span class="top-nav__badge">v0.1.1</span>
|
|
24
24
|
</a>
|
|
25
25
|
<div class="top-nav__links">
|
|
26
26
|
<a href="index.html" class="top-nav__link">Home</a>
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
|
|
110
110
|
<!-- Footer -->
|
|
111
111
|
<footer class="footer">
|
|
112
|
-
<p>Overload v0.1.
|
|
112
|
+
<p>Overload v0.1.1 · MIT License · Built by <a href="https://github.com/dprakash2101" target="_blank" rel="noopener">Devi Prakash</a></p>
|
|
113
113
|
<p style="margin-top:8px">
|
|
114
114
|
<a href="https://github.com/dprakash2101/overload" target="_blank" rel="noopener">GitHub</a> ·
|
|
115
115
|
<a href="https://pypi.org/project/overload-cli/" target="_blank" rel="noopener">PyPI</a> ·
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<a href="index.html" class="top-nav__logo">
|
|
21
21
|
<svg viewBox="0 0 32 32" fill="none"><circle cx="16" cy="16" r="14" stroke="url(#grd)" stroke-width="2.5"/><path d="M10 20L16 8l6 12" stroke="url(#grd)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/><defs><linearGradient id="grd" x1="0" y1="0" x2="32" y2="32"><stop stop-color="#818cf8"/><stop offset="1" stop-color="#06b6d4"/></linearGradient></defs></svg>
|
|
22
22
|
Overload
|
|
23
|
-
<span class="top-nav__badge">v0.1.
|
|
23
|
+
<span class="top-nav__badge">v0.1.1</span>
|
|
24
24
|
</a>
|
|
25
25
|
<div class="top-nav__links">
|
|
26
26
|
<a href="index.html" class="top-nav__link">Home</a>
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
|
|
137
137
|
<!-- Footer -->
|
|
138
138
|
<footer class="footer">
|
|
139
|
-
<p>Overload v0.1.
|
|
139
|
+
<p>Overload v0.1.1 · MIT License · Built by <a href="https://github.com/dprakash2101" target="_blank" rel="noopener">Devi Prakash</a></p>
|
|
140
140
|
<p style="margin-top:8px">
|
|
141
141
|
<a href="https://github.com/dprakash2101/overload" target="_blank" rel="noopener">GitHub</a> ·
|
|
142
142
|
<a href="https://pypi.org/project/overload-cli/" target="_blank" rel="noopener">PyPI</a> ·
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<a href="index.html" class="top-nav__logo">
|
|
21
21
|
<svg viewBox="0 0 32 32" fill="none"><circle cx="16" cy="16" r="14" stroke="url(#grd)" stroke-width="2.5"/><path d="M10 20L16 8l6 12" stroke="url(#grd)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/><defs><linearGradient id="grd" x1="0" y1="0" x2="32" y2="32"><stop stop-color="#818cf8"/><stop offset="1" stop-color="#06b6d4"/></linearGradient></defs></svg>
|
|
22
22
|
Overload
|
|
23
|
-
<span class="top-nav__badge">v0.1.
|
|
23
|
+
<span class="top-nav__badge">v0.1.1</span>
|
|
24
24
|
</a>
|
|
25
25
|
<div class="top-nav__links">
|
|
26
26
|
<a href="index.html" class="top-nav__link">Home</a>
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
|
|
139
139
|
<!-- Footer -->
|
|
140
140
|
<footer class="footer">
|
|
141
|
-
<p>Overload v0.1.
|
|
141
|
+
<p>Overload v0.1.1 · MIT License · Built by <a href="https://github.com/dprakash2101" target="_blank" rel="noopener">Devi Prakash</a></p>
|
|
142
142
|
<p style="margin-top:8px">
|
|
143
143
|
<a href="https://github.com/dprakash2101/overload" target="_blank" rel="noopener">GitHub</a> ·
|
|
144
144
|
<a href="https://pypi.org/project/overload-cli/" target="_blank" rel="noopener">PyPI</a> ·
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<a href="index.html" class="top-nav__logo">
|
|
21
21
|
<svg viewBox="0 0 32 32" fill="none"><circle cx="16" cy="16" r="14" stroke="url(#grd)" stroke-width="2.5"/><path d="M10 20L16 8l6 12" stroke="url(#grd)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/><defs><linearGradient id="grd" x1="0" y1="0" x2="32" y2="32"><stop stop-color="#818cf8"/><stop offset="1" stop-color="#06b6d4"/></linearGradient></defs></svg>
|
|
22
22
|
Overload
|
|
23
|
-
<span class="top-nav__badge">v0.1.
|
|
23
|
+
<span class="top-nav__badge">v0.1.1</span>
|
|
24
24
|
</a>
|
|
25
25
|
<div class="top-nav__links">
|
|
26
26
|
<a href="index.html" class="top-nav__link">Home</a>
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
|
|
119
119
|
<!-- Footer -->
|
|
120
120
|
<footer class="footer">
|
|
121
|
-
<p>Overload v0.1.
|
|
121
|
+
<p>Overload v0.1.1 · MIT License · Built by <a href="https://github.com/dprakash2101" target="_blank" rel="noopener">Devi Prakash</a></p>
|
|
122
122
|
<p style="margin-top:8px">
|
|
123
123
|
<a href="https://github.com/dprakash2101/overload" target="_blank" rel="noopener">GitHub</a> ·
|
|
124
124
|
<a href="https://pypi.org/project/overload-cli/" target="_blank" rel="noopener">PyPI</a> ·
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<a href="index.html" class="top-nav__logo">
|
|
21
21
|
<svg viewBox="0 0 32 32" fill="none"><circle cx="16" cy="16" r="14" stroke="url(#grd)" stroke-width="2.5"/><path d="M10 20L16 8l6 12" stroke="url(#grd)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/><defs><linearGradient id="grd" x1="0" y1="0" x2="32" y2="32"><stop stop-color="#818cf8"/><stop offset="1" stop-color="#06b6d4"/></linearGradient></defs></svg>
|
|
22
22
|
Overload
|
|
23
|
-
<span class="top-nav__badge">v0.1.
|
|
23
|
+
<span class="top-nav__badge">v0.1.1</span>
|
|
24
24
|
</a>
|
|
25
25
|
<div class="top-nav__links">
|
|
26
26
|
<a href="index.html" class="top-nav__link">Home</a>
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
<p class="subtitle">All notable changes to this project will be documented in this file.</p>
|
|
78
78
|
|
|
79
79
|
<div class="card">
|
|
80
|
-
<h2 class="card__title">v0.1.
|
|
80
|
+
<h2 class="card__title">v0.1.1 - Initial Release</h2>
|
|
81
81
|
<p class="card__desc"><strong>Date:</strong> 2026-05-30</p>
|
|
82
82
|
<ul>
|
|
83
83
|
<li><strong>Initial PyPI Release:</strong> The first public release of <code>overload-cli</code>.</li>
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
|
|
95
95
|
<!-- Footer -->
|
|
96
96
|
<footer class="footer">
|
|
97
|
-
<p>Overload v0.1.
|
|
97
|
+
<p>Overload v0.1.1 · MIT License · Built by <a href="https://github.com/dprakash2101" target="_blank" rel="noopener">Devi Prakash</a></p>
|
|
98
98
|
<p style="margin-top:8px">
|
|
99
99
|
<a href="https://github.com/dprakash2101/overload" target="_blank" rel="noopener">GitHub</a> ·
|
|
100
100
|
<a href="https://pypi.org/project/overload-cli/" target="_blank" rel="noopener">PyPI</a> ·
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<a href="index.html" class="top-nav__logo">
|
|
21
21
|
<svg viewBox="0 0 32 32" fill="none"><circle cx="16" cy="16" r="14" stroke="url(#grd)" stroke-width="2.5"/><path d="M10 20L16 8l6 12" stroke="url(#grd)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/><defs><linearGradient id="grd" x1="0" y1="0" x2="32" y2="32"><stop stop-color="#818cf8"/><stop offset="1" stop-color="#06b6d4"/></linearGradient></defs></svg>
|
|
22
22
|
Overload
|
|
23
|
-
<span class="top-nav__badge">v0.1.
|
|
23
|
+
<span class="top-nav__badge">v0.1.1</span>
|
|
24
24
|
</a>
|
|
25
25
|
<div class="top-nav__links">
|
|
26
26
|
<a href="index.html" class="top-nav__link">Home</a>
|
|
@@ -234,7 +234,7 @@ jobs:
|
|
|
234
234
|
|
|
235
235
|
<!-- Footer -->
|
|
236
236
|
<footer class="footer">
|
|
237
|
-
<p>Overload v0.1.
|
|
237
|
+
<p>Overload v0.1.1 · MIT License · Built by <a href="https://github.com/dprakash2101" target="_blank" rel="noopener">Devi Prakash</a></p>
|
|
238
238
|
<p style="margin-top:8px">
|
|
239
239
|
<a href="https://github.com/dprakash2101/overload" target="_blank" rel="noopener">GitHub</a> ·
|
|
240
240
|
<a href="https://pypi.org/project/overload-cli/" target="_blank" rel="noopener">PyPI</a> ·
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<a href="index.html" class="top-nav__logo">
|
|
21
21
|
<svg viewBox="0 0 32 32" fill="none"><circle cx="16" cy="16" r="14" stroke="url(#grd)" stroke-width="2.5"/><path d="M10 20L16 8l6 12" stroke="url(#grd)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/><defs><linearGradient id="grd" x1="0" y1="0" x2="32" y2="32"><stop stop-color="#818cf8"/><stop offset="1" stop-color="#06b6d4"/></linearGradient></defs></svg>
|
|
22
22
|
Overload
|
|
23
|
-
<span class="top-nav__badge">v0.1.
|
|
23
|
+
<span class="top-nav__badge">v0.1.1</span>
|
|
24
24
|
</a>
|
|
25
25
|
<div class="top-nav__links">
|
|
26
26
|
<a href="index.html" class="top-nav__link">Home</a>
|
|
@@ -210,7 +210,7 @@ overload run --collection api.json --var base_url=https://prod.api.com --var tok
|
|
|
210
210
|
|
|
211
211
|
<!-- Footer -->
|
|
212
212
|
<footer class="footer">
|
|
213
|
-
<p>Overload v0.1.
|
|
213
|
+
<p>Overload v0.1.1 · MIT License · Built by <a href="https://github.com/dprakash2101" target="_blank" rel="noopener">Devi Prakash</a></p>
|
|
214
214
|
<p style="margin-top:8px">
|
|
215
215
|
<a href="https://github.com/dprakash2101/overload" target="_blank" rel="noopener">GitHub</a> ·
|
|
216
216
|
<a href="https://pypi.org/project/overload-cli/" target="_blank" rel="noopener">PyPI</a> ·
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<a href="index.html" class="top-nav__logo">
|
|
21
21
|
<svg viewBox="0 0 32 32" fill="none"><circle cx="16" cy="16" r="14" stroke="url(#grd)" stroke-width="2.5"/><path d="M10 20L16 8l6 12" stroke="url(#grd)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/><defs><linearGradient id="grd" x1="0" y1="0" x2="32" y2="32"><stop stop-color="#818cf8"/><stop offset="1" stop-color="#06b6d4"/></linearGradient></defs></svg>
|
|
22
22
|
Overload
|
|
23
|
-
<span class="top-nav__badge">v0.1.
|
|
23
|
+
<span class="top-nav__badge">v0.1.1</span>
|
|
24
24
|
</a>
|
|
25
25
|
<div class="top-nav__links">
|
|
26
26
|
<a href="index.html" class="top-nav__link">Home</a>
|
|
@@ -162,7 +162,7 @@
|
|
|
162
162
|
|
|
163
163
|
<!-- Footer -->
|
|
164
164
|
<footer class="footer">
|
|
165
|
-
<p>Overload v0.1.
|
|
165
|
+
<p>Overload v0.1.1 · MIT License · Built by <a href="https://github.com/dprakash2101" target="_blank" rel="noopener">Devi Prakash</a></p>
|
|
166
166
|
<p style="margin-top:8px">
|
|
167
167
|
<a href="https://github.com/dprakash2101/overload" target="_blank" rel="noopener">GitHub</a> ·
|
|
168
168
|
<a href="https://pypi.org/project/overload-cli/" target="_blank" rel="noopener">PyPI</a> ·
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<a href="index.html" class="top-nav__logo">
|
|
21
21
|
<svg viewBox="0 0 32 32" fill="none"><circle cx="16" cy="16" r="14" stroke="url(#grd)" stroke-width="2.5"/><path d="M10 20L16 8l6 12" stroke="url(#grd)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/><defs><linearGradient id="grd" x1="0" y1="0" x2="32" y2="32"><stop stop-color="#818cf8"/><stop offset="1" stop-color="#06b6d4"/></linearGradient></defs></svg>
|
|
22
22
|
Overload
|
|
23
|
-
<span class="top-nav__badge">v0.1.
|
|
23
|
+
<span class="top-nav__badge">v0.1.1</span>
|
|
24
24
|
</a>
|
|
25
25
|
<div class="top-nav__links">
|
|
26
26
|
<a href="index.html" class="top-nav__link">Home</a>
|
|
@@ -117,7 +117,7 @@ overload run --collection api.json --config overload.config.yaml --rps 200</code
|
|
|
117
117
|
|
|
118
118
|
<!-- Footer -->
|
|
119
119
|
<footer class="footer">
|
|
120
|
-
<p>Overload v0.1.
|
|
120
|
+
<p>Overload v0.1.1 · MIT License · Built by <a href="https://github.com/dprakash2101" target="_blank" rel="noopener">Devi Prakash</a></p>
|
|
121
121
|
<p style="margin-top:8px">
|
|
122
122
|
<a href="https://github.com/dprakash2101/overload" target="_blank" rel="noopener">GitHub</a> ·
|
|
123
123
|
<a href="https://pypi.org/project/overload-cli/" target="_blank" rel="noopener">PyPI</a> ·
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<a href="index.html" class="top-nav__logo">
|
|
21
21
|
<svg viewBox="0 0 32 32" fill="none"><circle cx="16" cy="16" r="14" stroke="url(#grd)" stroke-width="2.5"/><path d="M10 20L16 8l6 12" stroke="url(#grd)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/><defs><linearGradient id="grd" x1="0" y1="0" x2="32" y2="32"><stop stop-color="#818cf8"/><stop offset="1" stop-color="#06b6d4"/></linearGradient></defs></svg>
|
|
22
22
|
Overload
|
|
23
|
-
<span class="top-nav__badge">v0.1.
|
|
23
|
+
<span class="top-nav__badge">v0.1.1</span>
|
|
24
24
|
</a>
|
|
25
25
|
<div class="top-nav__links">
|
|
26
26
|
<a href="index.html" class="top-nav__link">Home</a>
|
|
@@ -113,7 +113,7 @@ pip install -e ".[dev]"</code></pre>
|
|
|
113
113
|
|
|
114
114
|
<!-- Footer -->
|
|
115
115
|
<footer class="footer">
|
|
116
|
-
<p>Overload v0.1.
|
|
116
|
+
<p>Overload v0.1.1 · MIT License · Built by <a href="https://github.com/dprakash2101" target="_blank" rel="noopener">Devi Prakash</a></p>
|
|
117
117
|
<p style="margin-top:8px">
|
|
118
118
|
<a href="https://github.com/dprakash2101/overload" target="_blank" rel="noopener">GitHub</a> ·
|
|
119
119
|
<a href="https://pypi.org/project/overload-cli/" target="_blank" rel="noopener">PyPI</a> ·
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<a href="index.html" class="top-nav__logo">
|
|
21
21
|
<svg viewBox="0 0 32 32" fill="none"><circle cx="16" cy="16" r="14" stroke="url(#grd)" stroke-width="2.5"/><path d="M10 20L16 8l6 12" stroke="url(#grd)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/><defs><linearGradient id="grd" x1="0" y1="0" x2="32" y2="32"><stop stop-color="#818cf8"/><stop offset="1" stop-color="#06b6d4"/></linearGradient></defs></svg>
|
|
22
22
|
Overload
|
|
23
|
-
<span class="top-nav__badge">v0.1.
|
|
23
|
+
<span class="top-nav__badge">v0.1.1</span>
|
|
24
24
|
</a>
|
|
25
25
|
<div class="top-nav__links">
|
|
26
26
|
<a href="index.html" class="top-nav__link">Home</a>
|
|
@@ -94,7 +94,7 @@ pip install -e ".[dev]"</code></pre>
|
|
|
94
94
|
|
|
95
95
|
<p>Verify that the installation was successful:</p>
|
|
96
96
|
<pre data-lang="bash"><code>overload --version</code></pre>
|
|
97
|
-
<p>You should see: <code>overload 0.1.
|
|
97
|
+
<p>You should see: <code>overload 0.1.1</code></p>
|
|
98
98
|
|
|
99
99
|
<h2 id="first-test">Your First Test</h2>
|
|
100
100
|
|
|
@@ -158,7 +158,7 @@ pip install -e ".[dev]"</code></pre>
|
|
|
158
158
|
|
|
159
159
|
<!-- Footer -->
|
|
160
160
|
<footer class="footer">
|
|
161
|
-
<p>Overload v0.1.
|
|
161
|
+
<p>Overload v0.1.1 · MIT License · Built by <a href="https://github.com/dprakash2101" target="_blank" rel="noopener">Devi Prakash</a></p>
|
|
162
162
|
<p style="margin-top:8px">
|
|
163
163
|
<a href="https://github.com/dprakash2101/overload" target="_blank" rel="noopener">GitHub</a> ·
|
|
164
164
|
<a href="https://pypi.org/project/overload-cli/" target="_blank" rel="noopener">PyPI</a> ·
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<a href="index.html" class="top-nav__logo">
|
|
21
21
|
<svg viewBox="0 0 32 32" fill="none"><circle cx="16" cy="16" r="14" stroke="url(#grd)" stroke-width="2.5"/><path d="M10 20L16 8l6 12" stroke="url(#grd)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/><defs><linearGradient id="grd" x1="0" y1="0" x2="32" y2="32"><stop stop-color="#818cf8"/><stop offset="1" stop-color="#06b6d4"/></linearGradient></defs></svg>
|
|
22
22
|
Overload
|
|
23
|
-
<span class="top-nav__badge">v0.1.
|
|
23
|
+
<span class="top-nav__badge">v0.1.1</span>
|
|
24
24
|
</a>
|
|
25
25
|
<div class="top-nav__links">
|
|
26
26
|
<a href="index.html" class="top-nav__link active">Home</a>
|
|
@@ -94,6 +94,12 @@
|
|
|
94
94
|
</div>
|
|
95
95
|
</div>
|
|
96
96
|
|
|
97
|
+
<!-- Why Overload -->
|
|
98
|
+
<p class="subtitle" style="margin-top:1.5rem; font-style:italic; color: var(--text-muted, #6b7280);">
|
|
99
|
+
Named Overload because that's exactly what it does to your server.<br>
|
|
100
|
+
No metaphor. No brand committee. Just requests — a lot of them — all at once, until something interesting happens.
|
|
101
|
+
</p>
|
|
102
|
+
|
|
97
103
|
<!-- Install snippet -->
|
|
98
104
|
<pre data-lang="bash"><code>pip install overload-cli</code></pre>
|
|
99
105
|
|
|
@@ -253,7 +259,7 @@
|
|
|
253
259
|
|
|
254
260
|
<!-- Footer -->
|
|
255
261
|
<footer class="footer">
|
|
256
|
-
<p>Overload v0.1.
|
|
262
|
+
<p>Overload v0.1.1 · MIT License · Built by <a href="https://github.com/dprakash2101" target="_blank" rel="noopener">Devi Prakash</a></p>
|
|
257
263
|
<p style="margin-top:8px">
|
|
258
264
|
<a href="https://github.com/dprakash2101/overload" target="_blank" rel="noopener">GitHub</a> ·
|
|
259
265
|
<a href="https://pypi.org/project/overload-cli/" target="_blank" rel="noopener">PyPI</a> ·
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<a href="index.html" class="top-nav__logo">
|
|
21
21
|
<svg viewBox="0 0 32 32" fill="none"><circle cx="16" cy="16" r="14" stroke="url(#grd)" stroke-width="2.5"/><path d="M10 20L16 8l6 12" stroke="url(#grd)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/><defs><linearGradient id="grd" x1="0" y1="0" x2="32" y2="32"><stop stop-color="#818cf8"/><stop offset="1" stop-color="#06b6d4"/></linearGradient></defs></svg>
|
|
22
22
|
Overload
|
|
23
|
-
<span class="top-nav__badge">v0.1.
|
|
23
|
+
<span class="top-nav__badge">v0.1.1</span>
|
|
24
24
|
</a>
|
|
25
25
|
<div class="top-nav__links">
|
|
26
26
|
<a href="index.html" class="top-nav__link">Home</a>
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
|
|
115
115
|
<!-- Footer -->
|
|
116
116
|
<footer class="footer">
|
|
117
|
-
<p>Overload v0.1.
|
|
117
|
+
<p>Overload v0.1.1 · MIT License · Built by <a href="https://github.com/dprakash2101" target="_blank" rel="noopener">Devi Prakash</a></p>
|
|
118
118
|
<p style="margin-top:8px">
|
|
119
119
|
<a href="https://github.com/dprakash2101/overload" target="_blank" rel="noopener">GitHub</a> ·
|
|
120
120
|
<a href="https://pypi.org/project/overload-cli/" target="_blank" rel="noopener">PyPI</a> ·
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<a href="index.html" class="top-nav__logo">
|
|
21
21
|
<svg viewBox="0 0 32 32" fill="none"><circle cx="16" cy="16" r="14" stroke="url(#grd)" stroke-width="2.5"/><path d="M10 20L16 8l6 12" stroke="url(#grd)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/><defs><linearGradient id="grd" x1="0" y1="0" x2="32" y2="32"><stop stop-color="#818cf8"/><stop offset="1" stop-color="#06b6d4"/></linearGradient></defs></svg>
|
|
22
22
|
Overload
|
|
23
|
-
<span class="top-nav__badge">v0.1.
|
|
23
|
+
<span class="top-nav__badge">v0.1.1</span>
|
|
24
24
|
</a>
|
|
25
25
|
<div class="top-nav__links">
|
|
26
26
|
<a href="index.html" class="top-nav__link">Home</a>
|
|
@@ -297,7 +297,7 @@
|
|
|
297
297
|
|
|
298
298
|
<!-- Footer -->
|
|
299
299
|
<footer class="footer">
|
|
300
|
-
<p>Overload v0.1.
|
|
300
|
+
<p>Overload v0.1.1 · MIT License · Built by <a href="https://github.com/dprakash2101" target="_blank" rel="noopener">Devi Prakash</a></p>
|
|
301
301
|
<p style="margin-top:8px">
|
|
302
302
|
<a href="https://github.com/dprakash2101/overload" target="_blank" rel="noopener">GitHub</a> ·
|
|
303
303
|
<a href="https://pypi.org/project/overload-cli/" target="_blank" rel="noopener">PyPI</a> ·
|
|
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
|
|
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
|
|
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
|
|
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
|