Metadata-Version: 2.1
Name: py_country_info_all
Version: 0.2
Summary: A package to retrieve country info including ISO codes, country code, and flags.
Home-page: https://github.com/pabal15522/py_country_info_all.git
Author: SIMPARA Ibrahim
Author-email: ibrahim_simpara@yahoo.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Country Info Package

Ce package fournit des informations sur les pays, y compris :
- Le nom du pays
- Le code ISO
- L'indicatif tÃ©lÃ©phonique
- Le drapeau

## Installation

Pour installer le package, utilisez :

```bash
pip install py-country-info-all
```

## Importation

Pour impoter le package, utilisez :

```bash
from py_country_info_all import py_country_info_all

country = py_country_info_all.get_country_info("Burkina Faso")
print(country)
```
Resultat :

{'name': 'Burkina Faso', 'code': '226', 'iso': 'BF / BFA', 'flag': 'ðŸ‡§ðŸ‡«'}

## Pour afficher tous les pays , utiliser :

```bash
countries = py_country_info_all.get_all_countries()
```


## Illustration 

![Description de l'image](assets/image.png)
