#Data from NCEDC for event 2018 from obspy import UTCDateTime from obspy.clients.fdsn import Client client = Client("NCEDC") t1 = UTCDateTime(2018, 12, 5, 0, 17, 0) t2 = t1 + 60 st = client.get_waveforms("*", "*", "*", "*", t1, t2) print(st) 4876 Trace(s) in Stream: NP.1576.10.HNE | 2018-12-05T00:17:00.000000Z - 2018-12-05T00:17:59.990000Z | 100.0 Hz, 6000 samples ... (4874 other traces) ... CI.YEG2..HNZ | 2018-12-05T00:17:00.003100Z - 2018-12-05T00:17:59.993100Z | 100.0 Hz, 6000 samples [Use "print(Stream.__str__(extended=True))" to print all Traces] #Data from GFZ for Parfield sequence 2004 from obspy import UTCDateTime from obspy.clients.fdsn import Client client = Client("GFZ") t1 = UTCDateTime(2004, 9, 28, 10, 0, 0) t2 = t1 + 60 st = client.get_waveforms("*", "*", "*", "*", t1, t2) print(st) 987 Trace(s) in Stream: IS.AMZI..LHE | 2004-09-28T09:59:59.913720Z - 2004-09-28T10:00:59.913720Z | 1.0 Hz, 61 samples ... (985 other traces) ... 1M.D01.00.BHE | 2004-09-28T09:59:59.920000Z - 2004-09-28T10:00:59.920000Z | 25.0 Hz, 1501 samples [Use "print(Stream.__str__(extended=True))" to print all Traces]