The following Python code works on my Windows machine (Python 2.5.4), but doesn't on my Debian machine (Python 2.5.0). I'm guessing it's OS dependent.

import locale
locale.setlocale( locale.LC_ALL, 'English_United States.1252' )

I receive the following error:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python2.5/locale.py", line 476, in setlocale
    return _setlocale(category, locale)
locale.Error: unsupported locale setting

Questions:

  • Is it OS dependent?
  • How can I find the supported locale list within Python?
  • How can I match between Windows locales and Debian locales?
link|improve this question
1  
do you have to hardcode the locale? setlocale(LC_ALL, "") will load the locale defined by the environment. – kaizer.se Sep 8 '09 at 18:17
feedback

3 Answers

It is OS dependent.

To get the list of local available you can use locale -a in a shell

I think the local you want is something like Windows-1252

link|improve this answer
3  
there's no locale -a in windows – hwjp Apr 28 '11 at 9:25
feedback

try

apt-get install locales-all

for me it works like a charm

link|improve this answer
This is also helpful if one wants to configure locales selectively: tlug.dnho.net/node/237 – Eser Aygün Sep 19 '11 at 13:04
2  
If your want to be a bit more selective, you can install one of the language-pack-* packages, e.g. language-pack-de. – Karl Bartel Jan 18 at 15:54
do you know what the yum equivocation is? yum install locales-all doesnt work. – timh Apr 5 at 4:05
feedback

Look inside the locale.locale_alias dictionary.

>>> import locale
>>> len(locale.locale_alias)
789
>>> locale.locale_alias.keys()[:5]
['ko_kr.euc', 'is_is', 'ja_jp.mscode', 'kw_gb@euro', 'yi_us.cp1255']
>>>

(In my 2.6.2 installation there are 789 locale names.)

link|improve this answer
2  
Actually, the locales defined in the alias dictionary are not necessarily supported. – krawyoti Sep 8 '09 at 8:11
I tried a variation of this which was list(set(locale.locale_alias.values()) (values instead of keys because I want the real values, and convert to set and list again to retain only unique values). However there's another problem, as raised here (stackoverflow.com/questions/1728376/…): are there locales which don't have aliases, and won't be in the alias dictionary at all? – metamatt Jan 8 '11 at 0:30
feedback

Your Answer

 
or
required, but never shown