2025faCSE160/bigos/lecture20251118/secrets/test_secrets1.py

17 lines
248 B
Python
Executable file

from secrets1 import secrets
# Load login data from different file for safety reasons
WiFiLocation = secrets['location']
WiFiSSID = secrets['ssid']
WiFiPassword = secrets['password']
print(WiFiLocation)
print(WiFiSSID)
print(WiFiPassword)