1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-22 19:39:18 +00:00
Files
supervisor/hassio/addons/util.py
2017-04-27 21:58:21 +02:00

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()