Allow requesting METARs from multiple ICAO's by parsing and requesting data for each given ICAO in turn.
e.g.
py metar.py EGPF EGLL
- Parse into individual request strings; 'EGPF' and 'EGLL'
- Request METAR for EGPF
- Request METAR for EGLL
- Print results, in order.
Extended functionality may include different time ranges for each airport.
py metar.py EGPF 11:00 12:00 EGLL 13:00 15:00
- Parse into individual requests; 'EGPF 11:00 12:00' and 'EGLL 13:00 15:00'
- Request METAR for EGPF with
startTime=1100 and endTime=1200
- Request METAR for EGLL with
startTime=1300 and endTime=1500
- Print results, in order.
Allow requesting METARs from multiple ICAO's by parsing and requesting data for each given ICAO in turn.
e.g.
py metar.py EGPF EGLLExtended functionality may include different time ranges for each airport.
py metar.py EGPF 11:00 12:00 EGLL 13:00 15:00startTime=1100andendTime=1200startTime=1300andendTime=1500