Closed alex9smith closed 2 years ago
Hi @alex9smith,
the issue seems to persist when the query has the "OR" operator with the same output result:
TypeError: argument of type 'int' is not iterable
Hmm ok. Thanks for reporting @priolap . I'll take a look
By adding a space after
AND
in the query string. This missing space was stopping the API from parsing the query string. The error response was a plain text string with a 200 response code, so it was parsed into bytes, leading to pandas trying to parse a string of numbers into a dataframe which failed with errors like:Closes #11