is there anyway to load/read an external file(i.e, AWS S3) in numpy?. I have several npy files stored in S3. I have tried to access them through a S3 presigned url but it seems neither numpy.load method or np.genfromtxt are able to read them.
I wouldn't want to save files on local file system and then load them on numpy.
Any idea?
import request; import BytesIO; request = requests.get(url); np.load(BytesIO(request.content)).requests?