We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33d71eb commit 1e5fe7cCopy full SHA for 1e5fe7c
python-package/basedosdados/backend.py
@@ -496,6 +496,12 @@ def _execute_query(
496
Returns:
497
Dict: GraphQL response.
498
"""
499
+ if not _backend_dependencies:
500
+ raise BaseDosDadosMissingDependencyException(
501
+ "Optional dependencies for backend interaction are not installed. "
502
+ 'Please install basedosdados with the "upload" extra, such as:'
503
+ "\n\npip install basedosdados[upload]"
504
+ )
505
506
client_ = (
507
self._get_client(
0 commit comments