File size: 156 Bytes
a8b3f00
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import uuid


def is_valid_uuid(uuid_str: str) -> bool:
    try:
        uuid.UUID(uuid_str)
        return True
    except Exception:
        return False