File size: 160 Bytes
eefc538 |
1 2 3 4 5 6 |
import re
def is_valid_rpm_url(url: str) -> bool:
pattern = r"^https://models\.readyplayer\.me/[0-9a-fA-F]+\.glb$"
return bool(re.match(pattern, url))
|
eefc538 |
1 2 3 4 5 6 |
import re
def is_valid_rpm_url(url: str) -> bool:
pattern = r"^https://models\.readyplayer\.me/[0-9a-fA-F]+\.glb$"
return bool(re.match(pattern, url))
|