quantalogic 0.50.7__py3-none-any.whl → 0.50.8__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.
- quantalogic/tools/utils/generate_database_report.py +10 -4
- {quantalogic-0.50.7.dist-info → quantalogic-0.50.8.dist-info}/METADATA +1 -1
- {quantalogic-0.50.7.dist-info → quantalogic-0.50.8.dist-info}/RECORD +6 -6
- {quantalogic-0.50.7.dist-info → quantalogic-0.50.8.dist-info}/LICENSE +0 -0
- {quantalogic-0.50.7.dist-info → quantalogic-0.50.8.dist-info}/WHEEL +0 -0
- {quantalogic-0.50.7.dist-info → quantalogic-0.50.8.dist-info}/entry_points.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
import importlib.util
|
2
2
|
from datetime import UTC, datetime
|
3
|
-
from typing import Any, Dict, List
|
3
|
+
from typing import TYPE_CHECKING, Any, Dict, List
|
4
4
|
|
5
5
|
# Check if networkx is available
|
6
6
|
NETWORKX_AVAILABLE = False
|
@@ -27,9 +27,15 @@ if SQLALCHEMY_AVAILABLE:
|
|
27
27
|
|
28
28
|
# Type checking imports
|
29
29
|
if TYPE_CHECKING:
|
30
|
-
|
31
|
-
|
32
|
-
|
30
|
+
try:
|
31
|
+
import networkx as nx
|
32
|
+
from sqlalchemy.engine import Inspector
|
33
|
+
except ImportError:
|
34
|
+
# Provide dummy types for type checking
|
35
|
+
class Inspector:
|
36
|
+
pass
|
37
|
+
class nx:
|
38
|
+
DiGraph = Any
|
33
39
|
|
34
40
|
def generate_database_report(connection_string: str) -> str:
|
35
41
|
"""
|
@@ -118,7 +118,7 @@ quantalogic/tools/utilities/download_file_tool.py,sha256=hw_tO6RD0tA_LH46Tathf-L
|
|
118
118
|
quantalogic/tools/utilities/mermaid_validator_tool.py,sha256=Brd6pt8OxpUgf8dm6kHqJJs_IU8V4Kc-8VDP-n1eCUM,25886
|
119
119
|
quantalogic/tools/utils/__init__.py,sha256=-NtMSwxRt_G79Oo_DcDaCdLU2vLvuXIoCd34TOYEUmI,334
|
120
120
|
quantalogic/tools/utils/create_sample_database.py,sha256=xc0I1oWr_XYSQ79Ar8Mpr93dqooQOxtEXZPyoXbv8kM,5517
|
121
|
-
quantalogic/tools/utils/generate_database_report.py,sha256=
|
121
|
+
quantalogic/tools/utils/generate_database_report.py,sha256=Z7rCbtTI6ELs4FdMHAYOuTEUGRHRYgI6MRAiDMm-bGw,11458
|
122
122
|
quantalogic/tools/wikipedia_search_tool.py,sha256=LXQSPH8961Efw2QNxKe-cD5ZiIYD3ufEgrxH4y5uB74,5180
|
123
123
|
quantalogic/tools/write_file_tool.py,sha256=_mx9_Zjg2oMAAVzlcHEKjZVZUxQVgbRfcoMKgWnoZcg,3764
|
124
124
|
quantalogic/utils/__init__.py,sha256=hsS3hXH5lsBQcZh2QBANY1Af2Zs1jtrgxA7kXJEWi58,680
|
@@ -141,8 +141,8 @@ quantalogic/version_check.py,sha256=JyQFTNMDWtpHCLnN-BiakzB2cyXf6kUFsTjvmSruZi4,
|
|
141
141
|
quantalogic/welcome_message.py,sha256=o4tHdgabNuIV9kbIDPgS3_2yzJhayK30oKad2UouYDc,3020
|
142
142
|
quantalogic/xml_parser.py,sha256=AKuMdJC3QAX3Z_tErHVlZ-msjPemWaZUFiTwkHz76jg,11614
|
143
143
|
quantalogic/xml_tool_parser.py,sha256=Vz4LEgDbelJynD1siLOVkJ3gLlfHsUk65_gCwbYJyGc,3784
|
144
|
-
quantalogic-0.50.
|
145
|
-
quantalogic-0.50.
|
146
|
-
quantalogic-0.50.
|
147
|
-
quantalogic-0.50.
|
148
|
-
quantalogic-0.50.
|
144
|
+
quantalogic-0.50.8.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
145
|
+
quantalogic-0.50.8.dist-info/METADATA,sha256=zD8F5-0sXVCrMuGjT5y53x_CgfV5uNmoZ2TBNacunuw,22825
|
146
|
+
quantalogic-0.50.8.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
147
|
+
quantalogic-0.50.8.dist-info/entry_points.txt,sha256=h74O_Q3qBRCrDR99qvwB4BpBGzASPUIjCfxHq6Qnups,183
|
148
|
+
quantalogic-0.50.8.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|