I was able to pull just as of yesterday the data using async analytical API call, and when i run same python SDK today, I am getting below error. Not sure if this is to something with rate limit per day?

File “twitter_async_analytics_data_0119_3.py”, line 150, in
async_data.append(LineItem.async_stats_job_data(account, url=result.url))
File “/home/panjiyar/anaconda3/lib/python3.8/site-packages/twitter_ads/analytics.py”, line 115, in async_stats_job_data
response = Request(account.client, ‘get’, resource.path, domain=domain,
File “/home/panjiyar/anaconda3/lib/python3.8/site-packages/twitter_ads/http.py”, line 68, in perform
response = self.__oauth_request()
File “/home/panjiyar/anaconda3/lib/python3.8/site-packages/twitter_ads/http.py”, line 105, in __oauth_request
url = self.__domain() + self._resource
TypeError: can only concatenate str (not “bytes”) to str

There is a chance the job has not completed yet and the result.url is null. I would suggest checking that the result.url is populated and/or adding a delay after scheduling the job. If this is not the issue, please print the raw API request and response that is causing this problem.