mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-06-25 11:26:30 +00:00
9 lines
198 B
Python
9 lines
198 B
Python
"""Util addons functions."""
|
|
import hashlib
|
|
|
|
|
|
def get_hash_from_repository(repo):
|
|
"""Generate a hash from repository."""
|
|
key = repo.lower().encode()
|
|
return hashlib.sha1(key).hexdigest()
|