We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95b4c1d commit 9f9bcb0Copy full SHA for 9f9bcb0
1 file changed
tutorials/cosmodc2/cosmoDC2_TAP_access.md
@@ -75,7 +75,7 @@ adql
75
76
```{code-cell} ipython3
77
# In order to use TAP with this ADQL string using pyvo, you can do the following:
78
-result = service.search(adql)
+result = service.run_async(adql)
79
result
80
```
81
@@ -125,7 +125,7 @@ adql
125
Now we can use the previously-defined service to execute the query with the spatial contraint.
126
127
128
-cone_results = service.search(adql)
+cone_results = service.run_async(adql)
129
130
131
0 commit comments