[Question] Difference between ask and ask_stream? #57
-
Hi, first of all, amazing tool, thank you! I was reading the code and saw |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Stream is a generator and ask is a normal function. Stream allows you to get data faster and use them as you get it. You can try it out via the CLI. |
Beta Was this translation helpful? Give feedback.
-
Thank you! |
Beta Was this translation helpful? Give feedback.
Stream is a generator and ask is a normal function. Stream allows you to get data faster and use them as you get it. You can try it out via the CLI.
--no-stream
means to useask
and the default isask_stream