vote up 1 vote down star

For some (small) programs I'm writing in Python, I'd like to be able to set, store and retrieve user preferences in a file in a portable (multi-platform) way.

I'm obviously thinking about a very simple ConfigParser file like "~/.program" or "~/.program/program.cfg".

Is os.path.expanduser() the best way for achieving this or there's something more easy/straightforward that I'm missing?

flag

2 Answers

vote up 4 vote down check
os.path.expanduser("~")

is more portable than

os.environ['HOME']

so it should be ok to use the first.

link|flag
1  
os.path.expanduser('~') is a portable solution, but consider using xdg.BaseDirectory (freedesktop.org/wiki/Software/pyxdg) to find a proper location for your application specific data on platforms that follow freedesktop.org's XDG Base Directory Specification (standards.freedesktop.org/basedir-spec/…). – Andi Albrecht May 27 at 10:08
I appreciate the FD standard, but this requires an external module, so I would really go for the stdlib solution. – steko May 28 at 16:46
vote up 0 vote down

You can use os.environ:

import os
print os.environ["HOME"]
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.