Python "requests" module truncating responses -
when use python requests module, calling requests.get(url), have found response url being truncated.
import requests url = 'https://gtfsrt.api.translink.com.au/feed/seq' response = requests.get(url) print response.text the response url being truncated. there way requests retrieve full set of data , not truncate it?
note: given url public transport feed puts out huge quantity data during peak of day.
Comments
Post a Comment