import s3fs
fs = s3fs.S3FileSystem(anon=True)
fs = s3fs.S3FileSystem()
fs = s3fs.S3FileSystem(client_kwargs={"endpoint_url": "http://localhost:4566"})
get_time = "2020/11/15/0300' # YYYY/MM/DD/HHMM
fs.ls('noaa-himawari8/AHI-L1b-FLDK/{}'.format(get_time))
fs.glob('noaa-himawari8/AHI-L1b-FLDK/{}'.format(get_time))
fs.get("noaa-nbm-pds/blendv4.0/conus/2021/02/14/0000/windspd/blendv4.0_conus_windspd_2021-02-14T00:00_2021-02-14T01:00.tif", "blendv4.0_conus_windspd_2021-02-14T00:00_2021-02-14T01:00.tif")
with fs.open('bucket-name/path/to/your/file.pkl', 'rb') as f:
data = pickle.load(f)