Skip to content

Commit 9d6c9b0

Browse files
authored
Merge pull request #2593 from bsipocz/docs_remove_parallel_map
DOC: remove not recommended api usage
2 parents 54ef696 + 60b5c71 commit 9d6c9b0

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

docs/api.rst

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -206,31 +206,6 @@ Directory Structure::
206206
return dict
207207
208208
209-
210-
211-
Parallel Queries
212-
----------------
213-
For multiple parallel queries logged in to the same object, you could do:
214-
215-
.. code-block:: python
216-
217-
from astroquery.module import QueryClass
218-
219-
QC = QueryClass(login_information)
220-
221-
results = parallel_map(QC.query_object, ['m31', 'm51', 'm17'],
222-
radius=['1"', '1"', '1"'])
223-
224-
results = [QC.query_object_async(obj, radius=r)
225-
for obj,r in zip(['m31', 'm51', 'm17'], ['1"', '1"', '1"'])]
226-
227-
Here ``parallel_map()`` is a parallel implementation of some map function.
228-
229-
.. TODO::
230-
231-
Include a ``parallel_map`` function in ``astroquery.utils``
232-
233-
234209
Exceptions
235210
----------
236211

0 commit comments

Comments
 (0)