This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import json | |
import math | |
from datetime import datetime, timedelta | |
import numpy as np | |
import boto3 | |
from botocore import UNSIGNED | |
from botocore.config import Config |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
from datetime import datetime,timezone | |
from dateutil import parser | |
import requests | |
now = datetime.now(timezone.utc) | |
url = r'https://radiosondy.info/dyn/get_status.php' | |
data = pd.read_html(url)[0].values.tolist() | |
for row in data: | |
if (row[6] == "FOUND" or row[6] == "NEED ATTENTION"): # Only process manual updates |