nextog-cli 1.0.0__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.
- nextog/__init__.py +4 -0
- nextog/cli.py +545 -0
- nextog/config/__init__.py +1 -0
- nextog/config/settings.py +132 -0
- nextog/core/__init__.py +1 -0
- nextog/core/engine.py +193 -0
- nextog/core/permissions.py +129 -0
- nextog/core/privacy.py +130 -0
- nextog/core/reporter.py +204 -0
- nextog/core/runner.py +236 -0
- nextog/data/__init__.py +1 -0
- nextog/data/local_db.py +367 -0
- nextog/data/models.py +72 -0
- nextog/data/sync.py +65 -0
- nextog/engines/__init__.py +1 -0
- nextog/engines/api/__init__.py +1 -0
- nextog/engines/api/graphql.py +54 -0
- nextog/engines/api/rest.py +346 -0
- nextog/engines/api/websocket.py +59 -0
- nextog/engines/embedded/__init__.py +1 -0
- nextog/engines/embedded/firmware.py +53 -0
- nextog/engines/embedded/hardware.py +330 -0
- nextog/engines/mobile/__init__.py +1 -0
- nextog/engines/mobile/android.py +333 -0
- nextog/engines/mobile/cross.py +48 -0
- nextog/engines/mobile/ios.py +46 -0
- nextog/engines/system/__init__.py +1 -0
- nextog/engines/system/load.py +121 -0
- nextog/engines/system/performance.py +128 -0
- nextog/engines/system/security.py +170 -0
- nextog/engines/web/__init__.py +1 -0
- nextog/engines/web/accessibility.py +191 -0
- nextog/engines/web/browser.py +387 -0
- nextog/engines/web/elements.py +285 -0
- nextog/engines/web/responsive.py +79 -0
- nextog/live/__init__.py +1 -0
- nextog/live/dashboard.py +30 -0
- nextog/live/panel.py +325 -0
- nextog/reports/__init__.py +1359 -0
- nextog/training/__init__.py +1 -0
- nextog/training/learner.py +269 -0
- nextog/training/patterns.py +102 -0
- nextog/utils/__init__.py +1 -0
- nextog/utils/helpers.py +91 -0
- nextog/utils/logger.py +37 -0
- nextog/utils/validators.py +98 -0
- nextog_cli-1.0.0.dist-info/METADATA +344 -0
- nextog_cli-1.0.0.dist-info/RECORD +51 -0
- nextog_cli-1.0.0.dist-info/WHEEL +5 -0
- nextog_cli-1.0.0.dist-info/entry_points.txt +2 -0
- nextog_cli-1.0.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,344 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: nextog-cli
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: nextOG CLI - Full QA Testing Automation Tool for Web, Mobile, API & Embedded Systems
|
|
5
|
+
Author-email: nextOG Team <dev@nextog.io>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/WAH-ISHAN/NEXTOG_CLI
|
|
8
|
+
Project-URL: Repository, https://github.com/WAH-ISHAN/NEXTOG_CLI.git
|
|
9
|
+
Project-URL: Documentation, https://github.com/WAH-ISHAN/NEXTOG_CLI#readme
|
|
10
|
+
Project-URL: Bug Tracker, https://github.com/WAH-ISHAN/NEXTOG_CLI/issues
|
|
11
|
+
Keywords: testing,qa,automation,cli,web-testing,mobile-testing,api-testing
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Environment :: Console
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Topic :: Software Development :: Testing
|
|
22
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
23
|
+
Requires-Python: >=3.9
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
Requires-Dist: typer[all]>=0.9.0
|
|
26
|
+
Requires-Dist: rich>=13.0.0
|
|
27
|
+
Requires-Dist: playwright>=1.40.0
|
|
28
|
+
Requires-Dist: httpx>=0.25.0
|
|
29
|
+
Requires-Dist: sqlalchemy>=2.0.0
|
|
30
|
+
Requires-Dist: cryptography>=41.0.0
|
|
31
|
+
Requires-Dist: pyyaml>=6.0
|
|
32
|
+
Requires-Dist: pydantic>=2.0.0
|
|
33
|
+
Requires-Dist: jinja2>=3.1.0
|
|
34
|
+
Requires-Dist: fastapi>=0.104.0
|
|
35
|
+
Requires-Dist: uvicorn>=0.24.0
|
|
36
|
+
Requires-Dist: websockets>=12.0
|
|
37
|
+
Requires-Dist: click>=8.1.0
|
|
38
|
+
Requires-Dist: python-dotenv>=1.0.0
|
|
39
|
+
Requires-Dist: tabulate>=0.9.0
|
|
40
|
+
Requires-Dist: halo>=0.0.31
|
|
41
|
+
Requires-Dist: tqdm>=4.66.0
|
|
42
|
+
Requires-Dist: psutil>=5.9.0
|
|
43
|
+
Requires-Dist: pytest>=7.4.0
|
|
44
|
+
Requires-Dist: openpyxl>=3.1.0
|
|
45
|
+
Requires-Dist: psutil>=5.9.0
|
|
46
|
+
Provides-Extra: mobile
|
|
47
|
+
Requires-Dist: Appium-Python-Client>=3.0.0; extra == "mobile"
|
|
48
|
+
Provides-Extra: all
|
|
49
|
+
Requires-Dist: nextog-cli[mobile]; extra == "all"
|
|
50
|
+
Provides-Extra: dev
|
|
51
|
+
Requires-Dist: pytest>=7.4.0; extra == "dev"
|
|
52
|
+
Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
|
|
53
|
+
Requires-Dist: black>=23.0.0; extra == "dev"
|
|
54
|
+
Requires-Dist: ruff>=0.1.0; extra == "dev"
|
|
55
|
+
Requires-Dist: mypy>=1.5.0; extra == "dev"
|
|
56
|
+
|
|
57
|
+
# 🚀 nextOG CLI
|
|
58
|
+
|
|
59
|
+
**Full QA Testing Automation CLI Tool**
|
|
60
|
+
|
|
61
|
+
> Web Apps • Mobile Apps • Embedded Systems • Web Systems — All-in-One Testing
|
|
62
|
+
|
|
63
|
+

|
|
64
|
+

|
|
65
|
+

|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
69
|
+
## ✨ Features
|
|
70
|
+
|
|
71
|
+
- 🌐 **Web Testing** — Playwright-based: responsive, accessibility, cross-browser, performance
|
|
72
|
+
- 📱 **Mobile Testing** — Appium-based: Android, iOS, cross-platform
|
|
73
|
+
- 🔌 **API Testing** — REST, GraphQL, WebSocket testing with OpenAPI spec support
|
|
74
|
+
- 🔧 **Embedded Systems** — MQTT, CoAP, HTTP, Serial protocol testing
|
|
75
|
+
- 🛡️ **Security Testing** — SSL, headers, SQL injection, XSS, CORS checks
|
|
76
|
+
- 📊 **Live Dashboard** — Real-time testing panel with WebSocket updates
|
|
77
|
+
- 📑 **Auto Excel Reports** — Industrial Excel reports auto-generated after EVERY test (10 sheets)
|
|
78
|
+
- 🧠 **Auto-Training** — Learns from your usage patterns to optimize testing
|
|
79
|
+
- 🔐 **Privacy-First** — ALL data stays local, encrypted, zero external transfer
|
|
80
|
+
- 📈 **Coverage Tracking** — Track progress from 0% → 90% automated coverage
|
|
81
|
+
- 👥 **User Permissions** — Role-based access: admin, tester, viewer, CI
|
|
82
|
+
|
|
83
|
+
---
|
|
84
|
+
|
|
85
|
+
## 🚀 Installation
|
|
86
|
+
|
|
87
|
+
```bash
|
|
88
|
+
# Install from source
|
|
89
|
+
cd nextog-cli
|
|
90
|
+
pip install -e .
|
|
91
|
+
|
|
92
|
+
# Install with mobile support
|
|
93
|
+
pip install -e ".[mobile]"
|
|
94
|
+
|
|
95
|
+
# Install Playwright browsers
|
|
96
|
+
playwright install
|
|
97
|
+
|
|
98
|
+
# Verify installation
|
|
99
|
+
nextog --version
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
---
|
|
103
|
+
|
|
104
|
+
## 📖 Quick Start
|
|
105
|
+
|
|
106
|
+
### Initialize a Project
|
|
107
|
+
|
|
108
|
+
```bash
|
|
109
|
+
# Create a new full-stack testing project
|
|
110
|
+
nextog init my-project --template full
|
|
111
|
+
|
|
112
|
+
# Web-only project
|
|
113
|
+
nextog my-web-app --template web
|
|
114
|
+
|
|
115
|
+
# API-only project
|
|
116
|
+
nextog my-api --template api
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
### Run Tests
|
|
120
|
+
|
|
121
|
+
```bash
|
|
122
|
+
# Web testing
|
|
123
|
+
nextog test web --url https://example.com --browser chromium --responsive --accessibility
|
|
124
|
+
|
|
125
|
+
# Mobile testing
|
|
126
|
+
nextog test mobile --app ./myapp.apk --platform android
|
|
127
|
+
|
|
128
|
+
# API testing
|
|
129
|
+
nextog test api --spec ./openapi.yaml --base-url https://api.example.com
|
|
130
|
+
|
|
131
|
+
# Embedded systems
|
|
132
|
+
nextog test embedded --target 192.168.1.100 --protocol mqtt
|
|
133
|
+
|
|
134
|
+
# Run all tests
|
|
135
|
+
nextog test all --coverage-target 90
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
### Live Dashboard
|
|
139
|
+
|
|
140
|
+
```bash
|
|
141
|
+
# Start real-time testing dashboard
|
|
142
|
+
nextog live --port 8080
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
### View Coverage
|
|
146
|
+
|
|
147
|
+
```bash
|
|
148
|
+
# Show coverage table
|
|
149
|
+
nextog coverage
|
|
150
|
+
|
|
151
|
+
# Generate HTML report
|
|
152
|
+
nextog coverage --report --format html
|
|
153
|
+
|
|
154
|
+
# Generate JSON report
|
|
155
|
+
nextog coverage --report --format json
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
### Generate Industrial Excel Reports
|
|
159
|
+
|
|
160
|
+
```bash
|
|
161
|
+
# Reports auto-generate after EVERY test run!
|
|
162
|
+
nextog test web --url https://example.com # → Excel report auto-created
|
|
163
|
+
nextog test mobile --app ./app.apk # → Excel report auto-created
|
|
164
|
+
nextog test api --spec ./openapi.yaml # → Excel report auto-created
|
|
165
|
+
|
|
166
|
+
# Generate report manually from last test
|
|
167
|
+
nextog report
|
|
168
|
+
|
|
169
|
+
# Generate for specific test type
|
|
170
|
+
nextog report --type web
|
|
171
|
+
nextog report --type api
|
|
172
|
+
nextog report --type mobile
|
|
173
|
+
nextog report --type embedded
|
|
174
|
+
nextog report --type full
|
|
175
|
+
|
|
176
|
+
# Custom output path
|
|
177
|
+
nextog report --output ./my-report.xlsx
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
**Each Excel Report Contains 10 Industrial Sheets:**
|
|
181
|
+
1. 📋 Executive Summary — Key metrics, overall status, risk level, recommendations
|
|
182
|
+
2. 📝 Test Details — Every test case with ID, status, expected/actual results
|
|
183
|
+
3. 📊 Coverage Analysis — Phase-wise coverage (0% → 90%), element coverage matrix
|
|
184
|
+
4. 🔍 Elements & Components — All detected elements with purpose & test status
|
|
185
|
+
5. 🐛 Defect Log — All found defects with severity, priority, steps to reproduce
|
|
186
|
+
6. ⚡ Performance Metrics — Duration, throughput, response times, benchmarks
|
|
187
|
+
7. 📈 Charts & Graphs — Pie charts (pass/fail), Bar charts (coverage by phase)
|
|
188
|
+
8. 💡 Recommendations — Action items prioritized by effort & impact
|
|
189
|
+
9. 🖥️ Test Environment — System info, OS, RAM, CPU, tool versions
|
|
190
|
+
10. ✍️ Sign-Off Sheet — Approval section for QA Lead, Dev Lead, PM, Release Manager
|
|
191
|
+
|
|
192
|
+
### Detect Elements
|
|
193
|
+
|
|
194
|
+
```bash
|
|
195
|
+
# Detect and explain all elements on a page
|
|
196
|
+
nextog elements https://example.com --explain
|
|
197
|
+
|
|
198
|
+
# Save elements to file
|
|
199
|
+
nextog elements https://example.com --output elements.json
|
|
200
|
+
```
|
|
201
|
+
|
|
202
|
+
---
|
|
203
|
+
|
|
204
|
+
## 👥 User Management
|
|
205
|
+
|
|
206
|
+
```bash
|
|
207
|
+
# Create users with roles
|
|
208
|
+
nextog user create john --role admin
|
|
209
|
+
nextog user create jane --role tester
|
|
210
|
+
nextog user create viewer1 --role viewer
|
|
211
|
+
|
|
212
|
+
# List users
|
|
213
|
+
nextog user list
|
|
214
|
+
|
|
215
|
+
# Change role
|
|
216
|
+
nextog user role john tester
|
|
217
|
+
```
|
|
218
|
+
|
|
219
|
+
### Permission Levels
|
|
220
|
+
|
|
221
|
+
| Role | Tests | Reports | Users | Config | Data |
|
|
222
|
+
|------|-------|---------|-------|--------|------|
|
|
223
|
+
| admin | ✅ All | ✅ | ✅ Manage | ✅ | ✅ |
|
|
224
|
+
| tester | ✅ Run/Create | ✅ | ❌ | ❌ | ✅ Export |
|
|
225
|
+
| viewer | ❌ | ✅ View | ❌ | ❌ | ✅ View |
|
|
226
|
+
| ci | ✅ Run | ✅ | ❌ | ❌ | ❌ |
|
|
227
|
+
|
|
228
|
+
---
|
|
229
|
+
|
|
230
|
+
## 🧠 Auto-Training
|
|
231
|
+
|
|
232
|
+
nextOG automatically learns from your testing patterns:
|
|
233
|
+
|
|
234
|
+
```bash
|
|
235
|
+
# Check training status
|
|
236
|
+
nextog train --action status
|
|
237
|
+
|
|
238
|
+
# Start training cycle
|
|
239
|
+
nextog train --action start --iterations 100
|
|
240
|
+
|
|
241
|
+
# Optimize test suite
|
|
242
|
+
nextog train --action optimize
|
|
243
|
+
```
|
|
244
|
+
|
|
245
|
+
**What it learns:**
|
|
246
|
+
- Which tests fail most often → runs them first (fail-fast)
|
|
247
|
+
- Common error patterns → suggests fixes
|
|
248
|
+
- User workflows → optimizes test order
|
|
249
|
+
- Coverage gaps → suggests new tests
|
|
250
|
+
|
|
251
|
+
---
|
|
252
|
+
|
|
253
|
+
## 🔐 Privacy Architecture
|
|
254
|
+
|
|
255
|
+
**nextOG is 100% privacy-first:**
|
|
256
|
+
|
|
257
|
+
- ✅ All data stored locally (SQLite + AES encryption)
|
|
258
|
+
- ✅ Zero external API calls for user data
|
|
259
|
+
- ✅ No telemetry, no analytics, no cloud sync
|
|
260
|
+
- ✅ User can export/delete all data anytime
|
|
261
|
+
- ✅ Data integrity verification built-in
|
|
262
|
+
|
|
263
|
+
```bash
|
|
264
|
+
# View storage stats
|
|
265
|
+
nextog data stats
|
|
266
|
+
|
|
267
|
+
# Export all data (encrypted)
|
|
268
|
+
nextog data export --output backup.json --encrypt
|
|
269
|
+
|
|
270
|
+
# Purge all data permanently
|
|
271
|
+
nextog data purge --yes
|
|
272
|
+
```
|
|
273
|
+
|
|
274
|
+
---
|
|
275
|
+
|
|
276
|
+
## 📊 Coverage Tracking
|
|
277
|
+
|
|
278
|
+
Testing progresses through 5 phases:
|
|
279
|
+
|
|
280
|
+
| Phase | Coverage | Tests |
|
|
281
|
+
|-------|----------|-------|
|
|
282
|
+
| 🔥 Smoke | 0% - 20% | Basic element detection, page loads |
|
|
283
|
+
| ⚡ Functional | 20% - 40% | Forms, navigation, API validation |
|
|
284
|
+
| 🔗 Integration | 40% - 60% | Cross-component, edge cases |
|
|
285
|
+
| 🛡️ Performance | 60% - 80% | Load, stress, security tests |
|
|
286
|
+
| 🎯 Advanced | 80% - 90% | Regression, advanced scenarios |
|
|
287
|
+
|
|
288
|
+
---
|
|
289
|
+
|
|
290
|
+
## 📁 Project Structure
|
|
291
|
+
|
|
292
|
+
```
|
|
293
|
+
nextog-cli/
|
|
294
|
+
├── nextog/
|
|
295
|
+
│ ├── cli.py # CLI entry point (Typer)
|
|
296
|
+
│ ├── core/
|
|
297
|
+
│ │ ├── engine.py # Core testing engine
|
|
298
|
+
│ │ ├── runner.py # Test runner & initializer
|
|
299
|
+
│ │ ├── reporter.py # Coverage reporting
|
|
300
|
+
│ │ ├── permissions.py # RBAC permissions
|
|
301
|
+
│ │ └── privacy.py # Privacy engine
|
|
302
|
+
│ ├── engines/
|
|
303
|
+
│ │ ├── web/ # Web testing (Playwright)
|
|
304
|
+
│ │ ├── mobile/ # Mobile testing (Appium)
|
|
305
|
+
│ │ ├── api/ # API testing (httpx)
|
|
306
|
+
│ │ ├── embedded/ # Embedded systems (MQTT/CoAP)
|
|
307
|
+
│ │ └── system/ # Performance & security
|
|
308
|
+
│ ├── training/ # Auto-learning engine
|
|
309
|
+
│ ├── data/ # Local database & sync
|
|
310
|
+
│ ├── live/ # Live dashboard (FastAPI)
|
|
311
|
+
│ ├── config/ # Settings management
|
|
312
|
+
│ └── utils/ # Helpers & validators
|
|
313
|
+
├── pyproject.toml # Package configuration
|
|
314
|
+
└── README.md
|
|
315
|
+
```
|
|
316
|
+
|
|
317
|
+
---
|
|
318
|
+
|
|
319
|
+
## 🛠️ Development
|
|
320
|
+
|
|
321
|
+
```bash
|
|
322
|
+
# Install dev dependencies
|
|
323
|
+
pip install -e ".[dev]"
|
|
324
|
+
|
|
325
|
+
# Run tests
|
|
326
|
+
pytest tests/
|
|
327
|
+
|
|
328
|
+
# Format code
|
|
329
|
+
black nextog/
|
|
330
|
+
ruff check nextog/
|
|
331
|
+
|
|
332
|
+
# Type check
|
|
333
|
+
mypy nextog/
|
|
334
|
+
```
|
|
335
|
+
|
|
336
|
+
---
|
|
337
|
+
|
|
338
|
+
## 📄 License
|
|
339
|
+
|
|
340
|
+
MIT License - See LICENSE file for details.
|
|
341
|
+
|
|
342
|
+
---
|
|
343
|
+
|
|
344
|
+
**Built with ❤️ for comprehensive QA automation**
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
nextog/__init__.py,sha256=Pfvozzoca_y_5DnJZ56jxrHJDodrpBpcPL8vidb9W78,102
|
|
2
|
+
nextog/cli.py,sha256=8KfEkLwSHVaqZpcYrwESRZ4sWD5lymk7Uyi-DX3xjdo,23124
|
|
3
|
+
nextog/config/__init__.py,sha256=dYf3yK99Dk2gKwoR0uI6uDyNngkHGydlrLMUEza7A2c,28
|
|
4
|
+
nextog/config/settings.py,sha256=3DslPnE82SqonAHREcxL_eD_GM9IoAUdpkIAdrGgHlc,3979
|
|
5
|
+
nextog/core/__init__.py,sha256=O5mgTl-P5pCkuElcEnS5aU_31GYj9AcDEP-mQa9AIKs,34
|
|
6
|
+
nextog/core/engine.py,sha256=D_3oYFc7GUWJCx0qQiUZsmyo6N7KLaja1Y3OSO3rAD0,6525
|
|
7
|
+
nextog/core/permissions.py,sha256=3-zdsKssazWiUPjzyIy3I8GtTPJ3Z7OdRK43MKPUypw,3854
|
|
8
|
+
nextog/core/privacy.py,sha256=rqpQlo50MLyXYQ5YY6MvmV6JrF3_JW9mM6hq8p63P0s,4649
|
|
9
|
+
nextog/core/reporter.py,sha256=YRcbf9p3fzgQ15V5TA8DcHz8pCkAwPZqSXi7QBhFRyE,8142
|
|
10
|
+
nextog/core/runner.py,sha256=p5uhLNSB_FrKxrB9XYzEXjssPoaAdQoD7vd16VOLWgU,8979
|
|
11
|
+
nextog/data/__init__.py,sha256=sRg8Qr2E97fh9NdJCCsSzx0v6Pva14DlChjEeQyTziM,30
|
|
12
|
+
nextog/data/local_db.py,sha256=mh5598v9bmALzDu9a63eefN_AsVqegjw3R6RUTBj6js,13748
|
|
13
|
+
nextog/data/models.py,sha256=_LzwmHbZnU0dKz3pScfByPAnXr1gQ_N2hs7yRCzoYE8,1759
|
|
14
|
+
nextog/data/sync.py,sha256=GGOIaww6T3RXv6zPjjQF6ZdYJdIe2lBwC_BkTXcYm1M,2102
|
|
15
|
+
nextog/engines/__init__.py,sha256=MYhg_49RWluGVJ1k8qV8ZsrAz0c9hIRF1oKDqGsg7HA,22
|
|
16
|
+
nextog/engines/api/__init__.py,sha256=ZqE2OadoPUK5chqaIFYeT5HLZBlmKv6jlW3t8OlI8lw,26
|
|
17
|
+
nextog/engines/api/graphql.py,sha256=Ha6hjuaIrLd83sArDXe2B0cmXgSld_zrzWehxXvU1D8,1765
|
|
18
|
+
nextog/engines/api/rest.py,sha256=J32K_nqUcmXD_HNJpUSWsnR0QFaR7edcGIq8FUwaGyk,13176
|
|
19
|
+
nextog/engines/api/websocket.py,sha256=ROoavmkxVZ-gxSr7Pmbj63MidM3v6gWChrBCVFz1rKw,2052
|
|
20
|
+
nextog/engines/embedded/__init__.py,sha256=mKfR2sBHPLAkqHnV8DbD5Y2rpbH0Fr8G_mFBlAlU_2U,39
|
|
21
|
+
nextog/engines/embedded/firmware.py,sha256=gYvyeQqdfXwm5tXN_cFn2tm4TAfzJIF7RwaEiO_aBKo,1734
|
|
22
|
+
nextog/engines/embedded/hardware.py,sha256=x86BgGJutAeNVis78n3ooqmQb_pL83i_2dWU8G_ijXM,11080
|
|
23
|
+
nextog/engines/mobile/__init__.py,sha256=rUm2DsJGuipp0k9VHAPvGZj7sO6rCaJqG87BzAkNZLw,29
|
|
24
|
+
nextog/engines/mobile/android.py,sha256=sAP8heh7qKjIigmgrQNKGRThEdyHHlCNXCG0yB7lj70,10951
|
|
25
|
+
nextog/engines/mobile/cross.py,sha256=tQ-QmlKU595QGzA2URoCSZRkoc_wV4D1B7gkbKcLQEU,1847
|
|
26
|
+
nextog/engines/mobile/ios.py,sha256=c7D6xEtZWVl5Pp_OjBryBJQ44aqv3IvWdwxkViLXdcI,1556
|
|
27
|
+
nextog/engines/system/__init__.py,sha256=0tBlrOmED1PURqAYN0LgjLa2K6umEfoAyFzU1xWbLDo,29
|
|
28
|
+
nextog/engines/system/load.py,sha256=RAgAgCZ9w-Wb8qAoWT2t6tUOjy9auOD19Sas8zvHamU,4594
|
|
29
|
+
nextog/engines/system/performance.py,sha256=C5vqDfeGYPmTI3g0opdqvu0OLRdxymmfaMtMtCnZvKA,4766
|
|
30
|
+
nextog/engines/system/security.py,sha256=qx3NhXW1ZcmWZnGbW1scmdNpu_90KFsfypPMYCTac5A,6235
|
|
31
|
+
nextog/engines/web/__init__.py,sha256=FNz9nYWJl39YjpliqaJtJ6xp1jXgFTaYkxW1-1uHcmI,26
|
|
32
|
+
nextog/engines/web/accessibility.py,sha256=ytlZifKRXeQfWUm3objS43HRQFagTJujxAXaER9fwzk,9314
|
|
33
|
+
nextog/engines/web/browser.py,sha256=_H_8IUQpB7TO4hoQY7tTggg3TP9L-6yhYe3upYXtUZk,14004
|
|
34
|
+
nextog/engines/web/elements.py,sha256=jrBYaTrIib0K8P0ueRNu56xIBIxi_fGYh5wNujdr3dE,12791
|
|
35
|
+
nextog/engines/web/responsive.py,sha256=8lUA82-mSKQ2Hj6PDvnlHzxqq4ssmHdHAULtSKXdRPc,2328
|
|
36
|
+
nextog/live/__init__.py,sha256=JJ4SAELBxYDOSnaiR0D4W4qC8RH-3B2W_0xBnStI_Uo,39
|
|
37
|
+
nextog/live/dashboard.py,sha256=C3HUrmfFwfdzwF8f47zWPClTRDlOGSOx8JGfjFYF_5o,922
|
|
38
|
+
nextog/live/panel.py,sha256=r9JvJp1VIkN8UZxDpMspLRqUzFtKBMoIyIN9Pz2e1QQ,11870
|
|
39
|
+
nextog/reports/__init__.py,sha256=PHQwgW9x755oczQZI9R12kIW_NmNEqfOoDN-rU9WLsI,74242
|
|
40
|
+
nextog/training/__init__.py,sha256=jlzm4yvBAYOX6nDcfLYozXHg82SSYTlX37L2Khi65M4,41
|
|
41
|
+
nextog/training/learner.py,sha256=ej_5CzgCl8QqMNCIa-n0adU79TTeKMOYG9iS4t-4aVs,10276
|
|
42
|
+
nextog/training/patterns.py,sha256=fqkvfVvyuDdIhdmVE5p3YAofG2k7oU4jT2HJKZtyjMI,4064
|
|
43
|
+
nextog/utils/__init__.py,sha256=M3o5C73FVOPX0FDrbKjOHI1TSmA56zxfLGh42MeY7UA,22
|
|
44
|
+
nextog/utils/helpers.py,sha256=lljABhut2O7Gq6nxxbj5ayqxOKQUdLAOoo84AUqygpE,2586
|
|
45
|
+
nextog/utils/logger.py,sha256=lvRljfv2PAniJdkexpFvOeVJDGKVtQR0OvU7gA6K5lw,1102
|
|
46
|
+
nextog/utils/validators.py,sha256=b0OyG7G_CKWmxdPGsNXEHM3TEYrdFO218QXhhk9-MFM,2941
|
|
47
|
+
nextog_cli-1.0.0.dist-info/METADATA,sha256=hC5pSYXFXn2qoQzdpNjmzh9_e2XCf9wiL0E0DRYZHVE,10239
|
|
48
|
+
nextog_cli-1.0.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
49
|
+
nextog_cli-1.0.0.dist-info/entry_points.txt,sha256=LvLLwFzhjlhaPYSaAgnIPEorZc0VEXU7hZVFEBwlv-k,42
|
|
50
|
+
nextog_cli-1.0.0.dist-info/top_level.txt,sha256=1BjEMePXEHql0zN7BCoyrTrKoFgQWc5gPl6O_XeH-mM,7
|
|
51
|
+
nextog_cli-1.0.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
nextog
|