I use the following to get the active Desktop path in Windows:
get_path = os.path.expanduser('~/Desktop/')
And it works. BUT I need this to also work on multilingual environments. Meaning it should work on other languages of Windows. The problem is they have different names for 'Desktop'. To be honest I couldn't test it yet. I don't have a different language Win machine around me. But the program will run on them. So I have to find a way to make it work.
Any advice?
Edit: I found this code for C#:
string path = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
reference: How to get a path to the desktop for current user in C#?
Perhaps there is a way to integrate this into Python?