vector-inspector 0.3.9__py3-none-any.whl → 0.3.12__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.
- vector_inspector/__init__.py +10 -1
- vector_inspector/core/connection_manager.py +91 -19
- vector_inspector/core/connections/base_connection.py +43 -43
- vector_inspector/core/connections/chroma_connection.py +1 -1
- vector_inspector/core/connections/pgvector_connection.py +12 -172
- vector_inspector/core/connections/pinecone_connection.py +596 -99
- vector_inspector/core/connections/qdrant_connection.py +35 -44
- vector_inspector/core/embedding_utils.py +14 -5
- vector_inspector/core/logging.py +3 -1
- vector_inspector/extensions/__init__.py +6 -0
- vector_inspector/extensions/telemetry_settings_panel.py +25 -0
- vector_inspector/main.py +45 -2
- vector_inspector/services/backup_restore_service.py +228 -15
- vector_inspector/services/settings_service.py +79 -19
- vector_inspector/services/telemetry_service.py +88 -0
- vector_inspector/ui/components/backup_restore_dialog.py +215 -101
- vector_inspector/ui/components/connection_manager_panel.py +155 -14
- vector_inspector/ui/dialogs/cross_db_migration.py +126 -99
- vector_inspector/ui/dialogs/settings_dialog.py +13 -6
- vector_inspector/ui/loading_screen.py +169 -0
- vector_inspector/ui/main_window.py +44 -19
- vector_inspector/ui/services/dialog_service.py +1 -0
- vector_inspector/ui/views/collection_browser.py +36 -34
- vector_inspector/ui/views/connection_view.py +7 -1
- vector_inspector/ui/views/info_panel.py +118 -52
- vector_inspector/ui/views/metadata_view.py +30 -31
- vector_inspector/ui/views/search_view.py +20 -19
- vector_inspector/ui/views/visualization_view.py +18 -15
- {vector_inspector-0.3.9.dist-info → vector_inspector-0.3.12.dist-info}/METADATA +19 -37
- {vector_inspector-0.3.9.dist-info → vector_inspector-0.3.12.dist-info}/RECORD +33 -29
- {vector_inspector-0.3.9.dist-info → vector_inspector-0.3.12.dist-info}/WHEEL +1 -1
- vector_inspector-0.3.12.dist-info/licenses/LICENSE +1 -0
- {vector_inspector-0.3.9.dist-info → vector_inspector-0.3.12.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: vector-inspector
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.12
|
|
4
4
|
Summary: A comprehensive desktop application for visualizing, querying, and managing vector database data
|
|
5
5
|
Author-Email: Anthony Dawson <anthonypdawson+github@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -8,7 +8,7 @@ Project-URL: Homepage, https://vector-inspector.divinedevops.com
|
|
|
8
8
|
Project-URL: Source, https://github.com/anthonypdawson/vector-inspector
|
|
9
9
|
Project-URL: Issues, https://github.com/anthonypdawson/vector-inspector/issues
|
|
10
10
|
Project-URL: Documentation, https://github.com/anthonypdawson/vector-inspector#readme
|
|
11
|
-
Requires-Python:
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
12
|
Requires-Dist: chromadb>=0.4.22
|
|
13
13
|
Requires-Dist: qdrant-client>=1.7.0
|
|
14
14
|
Requires-Dist: pyside6>=6.6.0
|
|
@@ -26,45 +26,19 @@ Requires-Dist: keyring>=25.7.0
|
|
|
26
26
|
Requires-Dist: hf-xet>=1.2.0
|
|
27
27
|
Requires-Dist: pymilvus>=2.6.6
|
|
28
28
|
Requires-Dist: lancedb>=0.27.0
|
|
29
|
-
Requires-Dist: psycopg2>=2.9.11
|
|
29
|
+
Requires-Dist: psycopg2-binary>=2.9.11
|
|
30
30
|
Requires-Dist: pgvector>=0.4.2
|
|
31
31
|
Description-Content-Type: text/markdown
|
|
32
32
|
|
|
33
33
|
# Latest updates
|
|
34
34
|
|
|
35
|
-
|
|
36
|
-
-
|
|
37
|
-
-
|
|
38
|
-
|
|
39
|
-
-
|
|
40
|
-
- Added
|
|
41
|
-
|
|
42
|
-
- Settings / Preferences
|
|
43
|
-
- SettingsService persists preferences and exposes typed accessors (breadcrumb, search defaults, auto-embed, window geometry)
|
|
44
|
-
- SettingsService emits a setting_changed Qt signal so UI reacts immediately
|
|
45
|
-
- SettingsDialog (modal) added with add_section API and hook integration for extension panels
|
|
46
|
-
- Breadcrumb controls moved out of core so Pro (Vector Studio) injects them via the settings_panel_hook
|
|
47
|
-
|
|
48
|
-
- Extension hook for settings panels
|
|
49
|
-
- *settings_panel_hook* added to *vector_inspector.extensions*; Vector Studio registers breadcrumb controls at startup
|
|
50
|
-
|
|
51
|
-
- Breadcrumb and UI improvements
|
|
52
|
-
- Breadcrumb label now elides long trails (left/middle) and shows full trail on hover
|
|
53
|
-
- SearchView supports runtime elide-mode changes and responds to settings signals
|
|
54
|
-
|
|
55
|
-
- Window geometry persistence
|
|
56
|
-
- Main window saves/restores geometry when window.restore_geometry is enabled
|
|
57
|
-
|
|
58
|
-
- Pro (Vector Studio) features
|
|
59
|
-
- *Search Similar* (Pro): right-click any row in Data Browser or Search Results to run a vector-to-vector similarity search
|
|
60
|
-
- *table_context_menu* handler hardened for many embedding/id formats and includes fallbacks
|
|
61
|
-
- Vector Studio injects breadcrumb controls into Settings dialog via *settings_panel_hook*
|
|
62
|
-
|
|
63
|
-
- Tests and CI
|
|
64
|
-
- Added *tests/test_settings_injection.py* to assert settings panel hook registration
|
|
65
|
-
- Updated context-menu tests to use *log_info* and *assert* for pytest
|
|
66
|
-
- Local test run: 5 tests passed; GUI-heavy suite ~9s due to PySide6 startup
|
|
67
|
-
|
|
35
|
+
## Pinecone Hosted Model Support Improvements
|
|
36
|
+
- Direct Text Search: Added full support for Pinecone indexes with integrated (hosted) embedding models. You can now perform semantic search using plain text queries—no local embedding required.
|
|
37
|
+
- Accurate Model Detection: The app now detects and displays the hosted model name (e.g., llama-text-embed-v2) in the info panel for Pinecone indexes.
|
|
38
|
+
- Robust Query Handling: The search logic now uses Pinecone’s search() API for hosted models, with correct response parsing and error handling.
|
|
39
|
+
- Future-Proof: Retained the ability to generate embeddings via Pinecone’s inference API for future features or advanced workflows.
|
|
40
|
+
- Improved Error Handling: Added better checks and debug logging for Pinecone API responses.
|
|
41
|
+
- These changes make Pinecone integration seamless and future-ready for both text and vector search scenarios.
|
|
68
42
|
---
|
|
69
43
|
|
|
70
44
|
# Vector Inspector
|
|
@@ -72,7 +46,7 @@ Description-Content-Type: text/markdown
|
|
|
72
46
|
> **Disclaimer:** This tool is currently under active development and is **not production ready**. Not all features have been thoroughly tested and code is released frequently. Use with caution in critical or production environments.
|
|
73
47
|
|
|
74
48
|
[](https://github.com/anthonypdawson/vector-inspector/actions/workflows/ci-tests.yml)
|
|
75
|
-
[](https://github.com/anthonypdawson/vector-inspector/actions/workflows/release-and-publish.yml)
|
|
76
50
|
|
|
77
51
|
[](https://pypi.org/project/vector-inspector/)
|
|
78
52
|
[](https://pepy.tech/projects/vector-inspector)
|
|
@@ -80,6 +54,14 @@ Description-Content-Type: text/markdown
|
|
|
80
54
|
|
|
81
55
|
A comprehensive desktop application for visualizing, querying, and managing vector database data. Similar to SQL database viewers, Vector Inspector provides an intuitive GUI for exploring vector embeddings, metadata, and performing similarity searches across multiple vector database providers.
|
|
82
56
|
|
|
57
|
+
<p align="center">
|
|
58
|
+
<a href="site/images/demo.gif" target="_blank">
|
|
59
|
+
<img src="site/images/demo.gif" alt="Vector Inspector Demo" width="600"/>
|
|
60
|
+
</a>
|
|
61
|
+
</p>
|
|
62
|
+
|
|
63
|
+
**Quick Demo:** See Vector Inspector in action!
|
|
64
|
+
|
|
83
65
|
## Overview
|
|
84
66
|
|
|
85
67
|
Vector Inspector bridges the gap between vector databases and user-friendly data exploration tools. While vector databases are powerful for semantic search and AI applications, they often lack the intuitive inspection and management tools that traditional SQL databases have. This project aims to provide that missing layer.
|
|
@@ -1,19 +1,20 @@
|
|
|
1
|
-
vector_inspector-0.3.
|
|
2
|
-
vector_inspector-0.3.
|
|
3
|
-
vector_inspector-0.3.
|
|
4
|
-
vector_inspector/
|
|
1
|
+
vector_inspector-0.3.12.dist-info/METADATA,sha256=RS7yQq8p4ICmsninQvDgBJ7au9kVZOnMPnFzzJ_LTPw,11589
|
|
2
|
+
vector_inspector-0.3.12.dist-info/WHEEL,sha256=Wb0ASbVj8JvWHpOiIpPi7ucfIgJeCi__PzivviEAQFc,90
|
|
3
|
+
vector_inspector-0.3.12.dist-info/entry_points.txt,sha256=u96envMI2NFImZUJDFutiiWl7ZoHrrev9joAgtyvTxo,80
|
|
4
|
+
vector_inspector-0.3.12.dist-info/licenses/LICENSE,sha256=3Cph1TPsQsnOPAintao_FxnCcujAkskWS0ZfxipDWnY,36
|
|
5
|
+
vector_inspector/__init__.py,sha256=t5_HBewaYJQEXKo99vJGB6xW-MAUI6-F5fsSksyrCnU,370
|
|
5
6
|
vector_inspector/__main__.py,sha256=Vdhw8YA1K3wPMlbJQYL5WqvRzAKVeZ16mZQFO9VRmCo,62
|
|
6
7
|
vector_inspector/config/__init__.py,sha256=vHkVsXSUdInsfzWSOLPZzaaELa3SGenAgfpY5EYbsYA,95
|
|
7
8
|
vector_inspector/config/known_embedding_models.json,sha256=tnTWI3OvdL2z0YreL_iBzbceIXR69NDj-0tBcEV6NVM,15701
|
|
8
9
|
vector_inspector/core/__init__.py,sha256=hjOqiJwF1P0rXjiOKhK4qDTvBY7G3m4kq8taH-gKrFM,57
|
|
9
10
|
vector_inspector/core/cache_manager.py,sha256=cHdbIYR-eS9vLLTqvq4Xejyi5Z7Fm9DqMhb_PMZjnjY,5695
|
|
10
|
-
vector_inspector/core/connection_manager.py,sha256=
|
|
11
|
+
vector_inspector/core/connection_manager.py,sha256=H46pQQBL_W6CSGtflRY6olaZlQ-etR7tG4zqdlAIS6M,12690
|
|
11
12
|
vector_inspector/core/connections/__init__.py,sha256=lDZ-Qv-CbBvVcSlT8K2824zojovEIKhykHVSLARHZWs,345
|
|
12
|
-
vector_inspector/core/connections/base_connection.py,sha256=
|
|
13
|
-
vector_inspector/core/connections/chroma_connection.py,sha256=
|
|
14
|
-
vector_inspector/core/connections/pgvector_connection.py,sha256=
|
|
15
|
-
vector_inspector/core/connections/pinecone_connection.py,sha256=
|
|
16
|
-
vector_inspector/core/connections/qdrant_connection.py,sha256=
|
|
13
|
+
vector_inspector/core/connections/base_connection.py,sha256=JajXBcUBGGJ9cpuBUThVlo90ZDIcdmWXTJVjOxWIjkA,12246
|
|
14
|
+
vector_inspector/core/connections/chroma_connection.py,sha256=FT2aQ6zScuTMP0kZLNr3F9TDGgNgWXOoN5hzk-sqfxQ,21005
|
|
15
|
+
vector_inspector/core/connections/pgvector_connection.py,sha256=wqo93RjE4CUvhfLQa-OZltqF4YbiemYPIrPe2D5G49I,37669
|
|
16
|
+
vector_inspector/core/connections/pinecone_connection.py,sha256=ARqSVwLQjJ1XAVF5_a8kE5UOjE1dUIzW8LAHLL_UsLY,47896
|
|
17
|
+
vector_inspector/core/connections/qdrant_connection.py,sha256=BO4OoW9GZ3H9WWsYmm9PWQK_6x7jssoL0mDGJYIUocA,31620
|
|
17
18
|
vector_inspector/core/connections/qdrant_helpers/__init__.py,sha256=u2YNjiW4sbNtqhTNOQr4hmOFqirlNlllsyBK2gWs9eU,262
|
|
18
19
|
vector_inspector/core/connections/qdrant_helpers/qdrant_embedding_resolver.py,sha256=9lQrVnjIDH2YyMMZwHdAtcSeWhNwUDrmMkFik3xWvGU,1547
|
|
19
20
|
vector_inspector/core/connections/qdrant_helpers/qdrant_filter_builder.py,sha256=WebqoWXuejaRUhpNTrEqf2JPG3BRQGhkz1HG82jBqLc,2514
|
|
@@ -23,26 +24,28 @@ vector_inspector/core/embedding_providers/base_provider.py,sha256=SqQFoE6lmmxCdn
|
|
|
23
24
|
vector_inspector/core/embedding_providers/clip_provider.py,sha256=vvFqoQZNB0PsFJxvDsoDf8-L_z61CrYROFT9IGt7nIE,9088
|
|
24
25
|
vector_inspector/core/embedding_providers/provider_factory.py,sha256=yBIw5Fk6HvVJiioyc8jledh4TGcQ68fvKXUKo3oqi-Q,5742
|
|
25
26
|
vector_inspector/core/embedding_providers/sentence_transformer_provider.py,sha256=3YGUt7-6VrfbWKMuo3vDzx9SJXi2CjbpdOqdtE5CymM,6913
|
|
26
|
-
vector_inspector/core/embedding_utils.py,sha256=
|
|
27
|
-
vector_inspector/core/logging.py,sha256=
|
|
27
|
+
vector_inspector/core/embedding_utils.py,sha256=5NjQfCURWU4EyKlaZLuHA1Z2fNevpUe1RhWDFagWVOc,5945
|
|
28
|
+
vector_inspector/core/logging.py,sha256=uKwuiOrlZXmBzhyT0Kyk4dF8HKGCjFg-X8wSIAod1LY,932
|
|
28
29
|
vector_inspector/core/model_registry.py,sha256=fdofceD3iyNpECVC7djTEAaDYgHX_7JQ3ROh5A0plpY,6269
|
|
29
30
|
vector_inspector/core/provider_factory.py,sha256=QFDpJTOBJVYAdOLlY0GxSWl87Yj_UT9ZzOm9cjVsGMU,3924
|
|
30
|
-
vector_inspector/extensions/__init__.py,sha256=
|
|
31
|
-
vector_inspector/
|
|
31
|
+
vector_inspector/extensions/__init__.py,sha256=cbN22B89XQT7uZRXBujqfbXDWm5w4rao0UHgMsUJqu0,3303
|
|
32
|
+
vector_inspector/extensions/telemetry_settings_panel.py,sha256=uYvxnjBj_sqD18TpxeZP1f1VRbYhSjQV5boVc53dx40,934
|
|
33
|
+
vector_inspector/main.py,sha256=NZ-rQu3-fVF7Db0hKbFrAE6rwhdZzv4siOGPU7R85Gg,1928
|
|
32
34
|
vector_inspector/services/__init__.py,sha256=QLgH7oybjHuEYDFNiBgmJxvSpgAzHEuBEPXa3SKJb_I,67
|
|
33
35
|
vector_inspector/services/backup_helpers.py,sha256=aX1ONFegERq6dpoNM1eJrbyE1gWCV3SuUHMyPpnxrYM,2005
|
|
34
|
-
vector_inspector/services/backup_restore_service.py,sha256=
|
|
36
|
+
vector_inspector/services/backup_restore_service.py,sha256=SaAQm76fhlBQoGIv7bNwo0BIfqydXQvFFKIb48cDjHE,18321
|
|
35
37
|
vector_inspector/services/credential_service.py,sha256=Ui4JzivQ5YCytQYsKdzpLs5nZcBtWiaQAOEzhZzpEeE,4089
|
|
36
38
|
vector_inspector/services/filter_service.py,sha256=xDrMxNWsYzRcR1n0Fd-yp6Fo-4aLbVIDkhj2GKmrw5o,2370
|
|
37
39
|
vector_inspector/services/import_export_service.py,sha256=4NOfAa6ZyvMyj5cDM4xu0Wqx0pgnK3cCNBGo3E6j4LE,10200
|
|
38
40
|
vector_inspector/services/profile_service.py,sha256=AMeC6XOfI6Qumi0bKlTbqU-czMcle0rrHYK68ceK5r8,12856
|
|
39
|
-
vector_inspector/services/settings_service.py,sha256=
|
|
41
|
+
vector_inspector/services/settings_service.py,sha256=yGTF4EawoBVmNpoTGidE4uM45nD3rC60mh0ex28UatI,12220
|
|
42
|
+
vector_inspector/services/telemetry_service.py,sha256=eWOmQxZjW2v_IK_HQ_uIRi4ostQyvo4ptxK3BB1cdq8,3066
|
|
40
43
|
vector_inspector/services/update_service.py,sha256=B_l0qQUe0L_rYWNYnqvXET4UNf6bCSsl2LTkINtp0GE,2771
|
|
41
44
|
vector_inspector/services/visualization_service.py,sha256=9TOK1S1u1U74wLpF5NdDiryyrjOzFnvE8kwjugf95Wk,4208
|
|
42
45
|
vector_inspector/ui/__init__.py,sha256=262ZiXO6Luk8vZnhCIoYxOtGiny0bXK-BTKjxUNBx-w,43
|
|
43
46
|
vector_inspector/ui/components/__init__.py,sha256=S-GWU1P820dJ6mHmeeBEy-CGF9fjpBeNf8vrbhRlFMk,30
|
|
44
|
-
vector_inspector/ui/components/backup_restore_dialog.py,sha256=
|
|
45
|
-
vector_inspector/ui/components/connection_manager_panel.py,sha256
|
|
47
|
+
vector_inspector/ui/components/backup_restore_dialog.py,sha256=3jfOyX_D5ClR1bwfVAKsyuGrRoDUKOi2AnNzW5bs0gQ,17150
|
|
48
|
+
vector_inspector/ui/components/connection_manager_panel.py,sha256=--QFgLNO5ohwCtV3XTy3MWd9nIgVRFXVTYoSUamhbPo,18731
|
|
46
49
|
vector_inspector/ui/components/filter_builder.py,sha256=NSR_hp-rzUZVAca6dIJhTxZA3igOKFM1g-YXiYPhFos,13360
|
|
47
50
|
vector_inspector/ui/components/item_dialog.py,sha256=VMwehEjQ6xrdxWygR9J-hHsLfzOVb_E3ePUGYO_c7XA,3951
|
|
48
51
|
vector_inspector/ui/components/loading_dialog.py,sha256=YEKYGU-R-Zz4CjXSArJtkNxgTy4O9hI5Bbt6qlIzD8U,1018
|
|
@@ -52,23 +55,24 @@ vector_inspector/ui/components/update_details_dialog.py,sha256=IQl4QZ30tHHOFay68
|
|
|
52
55
|
vector_inspector/ui/controllers/__init__.py,sha256=Wrc4GsLBbIU3FFk9py9URcblNCp-auGAAT1XPi20nWY,53
|
|
53
56
|
vector_inspector/ui/controllers/connection_controller.py,sha256=cx5Vgdn7cleMeJdUewDHd4NXSMmPUOFDwxQQVArfXuE,6494
|
|
54
57
|
vector_inspector/ui/dialogs/__init__.py,sha256=xtT77L91PFfm3zHYRENHkWHJaKPm1htuUzRXAF53P8w,211
|
|
55
|
-
vector_inspector/ui/dialogs/cross_db_migration.py,sha256=
|
|
58
|
+
vector_inspector/ui/dialogs/cross_db_migration.py,sha256=7gmxAPWiNQ_5Go3Kr8y0SZvvnRJtP0CLjBtBrHyr4M8,15650
|
|
56
59
|
vector_inspector/ui/dialogs/embedding_config_dialog.py,sha256=1K5LBSBXp590BvKwtHx9qgPwGREsn1mJ8cjFGSZHnMA,12926
|
|
57
60
|
vector_inspector/ui/dialogs/provider_type_dialog.py,sha256=W_FAJuvicwBUJJ7PyvKow9lc8_a5pnE3RIAsh-DVndQ,6809
|
|
58
|
-
vector_inspector/ui/dialogs/settings_dialog.py,sha256=
|
|
59
|
-
vector_inspector/ui/
|
|
61
|
+
vector_inspector/ui/dialogs/settings_dialog.py,sha256=t2YmuwLGK3VryRW5AQF0qJYW4cnxPlfeYp9r_2uj89E,4907
|
|
62
|
+
vector_inspector/ui/loading_screen.py,sha256=YnTtO6wpnMt8y_KhpUCGuD9q4MXvI-8BmljfUcYs2Vw,6376
|
|
63
|
+
vector_inspector/ui/main_window.py,sha256=RJiZjFMStN8gi2pBiwQKxKx7QN9TKoJHUrFRVRV3yio,28133
|
|
60
64
|
vector_inspector/ui/main_window_shell.py,sha256=0o4KxRc4KXu-mJxni9dv74a5DzP4OIvJoLTX7BLqDoo,3425
|
|
61
65
|
vector_inspector/ui/services/__init__.py,sha256=m2DGkhYlcQQGMtNQsup5eKmhCFhOhXHi-g9Hw0GH1vE,55
|
|
62
|
-
vector_inspector/ui/services/dialog_service.py,sha256
|
|
66
|
+
vector_inspector/ui/services/dialog_service.py,sha256=-YhRVD44Se2PTiEQrwy2SLoAK5sIxo6hPWJ1PY_IdXo,4342
|
|
63
67
|
vector_inspector/ui/tabs.py,sha256=nniOLax93udxFt1t3s-kx1BpguXBEiDUmC1HA9J-scw,2071
|
|
64
68
|
vector_inspector/ui/views/__init__.py,sha256=FeMtVzSbVFBMjdwLQSQqD0FRW4ieJ4ZKXtTBci2e_bw,30
|
|
65
|
-
vector_inspector/ui/views/collection_browser.py,sha256=
|
|
66
|
-
vector_inspector/ui/views/connection_view.py,sha256=
|
|
67
|
-
vector_inspector/ui/views/info_panel.py,sha256=
|
|
68
|
-
vector_inspector/ui/views/metadata_view.py,sha256=
|
|
69
|
-
vector_inspector/ui/views/search_view.py,sha256=
|
|
70
|
-
vector_inspector/ui/views/visualization_view.py,sha256=
|
|
69
|
+
vector_inspector/ui/views/collection_browser.py,sha256=QRdqXoExJKOodQJWohnuaoL5SEOZYRCCysAnZ1Zjw_c,3812
|
|
70
|
+
vector_inspector/ui/views/connection_view.py,sha256=JRe8Ia0FTaQub0VOjNsJ1Ttw8pgH8IIsllFZG6jFbm0,24050
|
|
71
|
+
vector_inspector/ui/views/info_panel.py,sha256=3e5Yeec_aS8Vnni34Ns4N_CKqLE2_g4u5_M9w0UnYXE,28956
|
|
72
|
+
vector_inspector/ui/views/metadata_view.py,sha256=Eb9o24OAi2OjGVN5flDRXTMyECwwnzGILoBr5TnrN6I,47263
|
|
73
|
+
vector_inspector/ui/views/search_view.py,sha256=GREfO8Et4vZ_7QJauPfsq-iwkrJtLsCmG6IAGPw6TdU,17432
|
|
74
|
+
vector_inspector/ui/views/visualization_view.py,sha256=vRk9MJ5Qw5u6UtRGmPaygLYJS1NWUfmB0az3-EHjYuE,11118
|
|
71
75
|
vector_inspector/utils/__init__.py,sha256=jhHBQC8C8bfhNlf6CAt07ejjStp_YAyleaYr2dm0Dk0,38
|
|
72
76
|
vector_inspector/utils/lazy_imports.py,sha256=2XZ3ZnwTvZ5vvrh36nJ_TUjwwkgjoAED6i6P9yctvt0,1211
|
|
73
77
|
vector_inspector/utils/version.py,sha256=2Xk9DEKlDRGEszNNiYnK7ps1i3OH56H2uZhR0_yZORs,382
|
|
74
|
-
vector_inspector-0.3.
|
|
78
|
+
vector_inspector-0.3.12.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
All rights reserved. Anthony Dawson
|
|
File without changes
|