shows the error: "HTTP status 500 Internal Server Error: Trying to download an offline product" The code i am using is
import time
import datetime
from sentinelsat import SentinelAPI, read_geojson, geojson_to_wkt
api = SentinelAPI('*****','******', 'https://scihub.copernicus.eu/dhus')
footprint = geojson_to_wkt(read_geojson('E:\map.geojson'))
products = api.query(footprint, date =('20161001' , '20170425'), platformname ='Sentinel-1',
producttype = 'GRD')
api.download_all(products)