Onionr/onionr/utils/gethostname.py
2019-07-30 00:19:22 -05:00

10 lines
301 B
Python

from . import identifyhome
import filepaths
def get_hostname():
try:
with open(identifyhome.identify_home() + '/hs/hostname', 'r') as hostname:
return hostname.read().strip()
except FileNotFoundError:
return "Not Generated"
except Exception:
return None