cvzi / flag

Flag emoji from country codes for Python šŸ³ļøā€šŸŒˆšŸŒ
https://pypi.org/project/emoji-country-flag/
MIT License
58 stars 7 forks source link
country-codes country-flags emoji flags python regional-indicator-symbols

flag

foodemoji on PyPI Python Versions Coverage Status Codacy Badge Maintainability Quality Gate Status

Flag emoji for Python.
Converts flag emoji to ASCII and other way round.

This is based on http://schinckel.net/2015/10/29/unicode-flags-in-python/ by schinckel

How it works

All the flag emoji are actually composed of two unicode letters. These are the 26 regional indicator symbols.

Alone they look like this:
šŸ‡¦ šŸ‡§ šŸ‡Ø šŸ‡© šŸ‡Ŗ šŸ‡« šŸ‡¬ šŸ‡­ šŸ‡® šŸ‡Æ šŸ‡° šŸ‡± šŸ‡² šŸ‡³ šŸ‡“ šŸ‡µ šŸ‡¶ šŸ‡· šŸ‡ø šŸ‡¹ šŸ‡ŗ šŸ‡» šŸ‡¼ šŸ‡½ šŸ‡¾ šŸ‡æ

If you pair them up according to ISO 3166 some browsers and phones will display a flag.
For example TW is Taiwan: šŸ‡¹ + šŸ‡¼ = šŸ‡¹šŸ‡¼

So, to encode an ASCII code like :TW: to šŸ‡¹šŸ‡¼, we just need to convert the ASCII T and W to the corresponding regional indicator symbols šŸ‡¹ and šŸ‡¼.
To reverse it, we translate the regional indicator symbols back to ASCII letters.

Example

    >>> import flag

    >>> flag.flag("IL")
    'šŸ‡®šŸ‡±'

    >>> flag.flag("GBENG")
    'šŸ“󠁧󠁢󠁄󠁮󠁧ó æ'

    >>> flag.flagize("Flag of Israel :IL:")
    'Flag of Israel šŸ‡®šŸ‡±'

    >>> flag.dflagize("Flag of Israel šŸ‡®šŸ‡±")
    'Flag of Israel :IL:'

    >>> flag.flagize("England :gb-eng: is part of the UK :GB:", subregions=True)
    'England šŸ“󠁧󠁢󠁄󠁮󠁧ó æ is part of the UK šŸ‡¬šŸ‡§'

    >>> flag.dflagize("England šŸ“󠁧󠁢󠁄󠁮󠁧ó æ is part of the UK šŸ‡¬šŸ‡§", subregions=True)
    'England :gb-eng: is part of the UK :GB:'

    >>> my_flags = flag.Flag(only_supported=True, allow_subregions=True)
    >>> my_flags.flagize("Convert actual flags like :US: but not unsupported ones like :XX:")
    'Convert actual flags like šŸ‡ŗšŸ‡ø but not unsupported ones like :XX:'

Install

pip install emoji-country-flag

See: https://pypi.org/project/emoji-country-flag/

Python 3.10 or higher is required for the latest release. The last release for Python 3.7 to 3.9 was v1.3.2. The last release for Python 2.7, 3.4 and 3.5 was v1.2.4.

Documentation

Documentation Status

Documentation at https://flag.readthedocs.io