mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-16 02:09:40 +00:00
5 lines
109 B
Python
5 lines
109 B
Python
import hashlib
|
|
|
|
|
|
def generate_url_hash(url: str) -> str:
|
|
return hashlib.sha256(url.encode()).hexdigest()
|