Any idea of where I can find a list of the different options like USERNAME? in OS.get_environment()

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By magnes3d

Any idea of where I can find a list of the different options like USERNAME, What are the others or how would I figure out what I can get from the environment?

    var username
if OS.has_environment("USERNAME"):
    username = OS.get_environment("USERNAME")
else:
    username = "Player"
:bust_in_silhouette: Reply From: reshadiye1

I found this website for variables:

https://ss64.com/nt/syntax-variables.html

i hope this will help to you.