def extract_deep_link(text): """ Extracts the unique_code from the sent /start command. """ return text.split()[1] if len(text.split()) > 1 else None