Get SMS Verification Code
Use Read Mobile SMS to retrieve recent messages, then iterate through them and extract a verification code with a regular expression.
For example, extract a 4–8 digit verification code:
re.findall(r'(?<!\d)\d{4,8}(?!\d)', )[0]
tip
Enable developer options and connect the mobile device to the computer. See Connect Mobile Device.