I need to do some text processing on the output of query. I set fetch_all = True because the query is large. But then it prints two messages that make parsing more difficult:
Fetching 30 genes(s) . . .
No results to return
I discoverd the flag verbose and set it to False, but it still prints No results to return. How can I turn this off?
I need to do some text processing on the output of
query
. I setfetch_all = True
because the query is large. But then it prints two messages that make parsing more difficult:I discoverd the flag
verbose
and set it to False, but it still printsNo results to return
. How can I turn this off?