Is there a Python library, or online resource I can use to programmatically obtain the alphabet of a particular locale?
For example, for the 'es_ES' locale I'd like to obtain 'ABCDEFGHIJKLMNÑOPQRSTUVWXYZabcdefghijklmnñopqrstuvwxyz'
or similar.
Is there a Python library, or online resource I can use to programmatically obtain the alphabet of a particular locale?
For example, for the 'es_ES' locale I'd like to obtain 'ABCDEFGHIJKLMNÑOPQRSTUVWXYZabcdefghijklmnñopqrstuvwxyz'
or similar.
Seems this is what I'm looking for: https://github.com/CrossWaterBridge/python-indexed-collation/, although I'm interested in knowing if there's a standard out there for Python.