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 smtplib | |
| import yaml | |
| from email.message import EmailMessage | |
| from email.utils import make_msgid | |
| from email.mime.base import MIMEBase | |
| from email import encoders | |
| from email.mime.multipart import MIMEMultipart | |
| from email.mime.text import MIMEText | |
| from email.mime.application import MIMEApplication |
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 numpy as np | |
| import dbdreader | |
| dbd=dbdreader.DBD("realtime_raw/02870227.scd", cacheDir='cac/') | |
| # print what parameters are available: | |
| for i,p in enumerate(dbd.parameterNames): | |
| tm, v = dbd.get(p) | |
| print(f"{i:02d}: {p} {len(v)}") |
OlderNewer