I have a url:
https://enterpriseefiling.fcc.gov/dataentry/api/download/dbfile/Current_LMS_Dump.zip
Let
u1 = ['https://enterpriseefiling.fcc.gov/dataentry/api/download/dbfile/Current_LMS_Dump.zip']
I run the following code in my python interpreter
import requests, io
r = requests.get(u1, stream=True)
io.BytesIO(r.content)
I get the following response
<_io.BytesIO object at 0x000002244592F1A8>
My question is: what does this mean? Where is 0x000002244592F1A8? What does 0x000002244592F1A8 refer to?