Metadata-Version: 2.4
Name: pylebanon
Version: 0.1.7
Summary: A Python package for Lebanon.
Author-email: Mohammad El Sakka <mohammad.el-sakka@outlook.com>
License: MIT License
        
        Copyright (c) 2025 Mohammad El Sakka
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: GitHub, https://github.com/MohammadElSakka/
Project-URL: LinkedIn, https://www.linkedin.com/in/mohammad-el-sakka/
Keywords: lebanon,python
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# pylebanon 
### A  Python package for ... Lebanon. And yes I had nothing better to do.


```python
from pylebanon import Lebanon
lb = Lebanon()
```

    Habibi welcome to Lebanon 🇱🇧



```python
import random 

print("Flag:", lb.get_flag())
print("Names:", lb.get_names())
print("Capital:", lb.get_capital())
print("Area:", lb.get_area())
print("Location:", lb.get_location())
print("Timezone:", lb.get_timezone())
governorates =  lb.get_governorates()
print("Governorates:", governorates)
idx = random.randint(0, len(governorates)-1)
print(f"Cities in {governorates[idx]}:", lb.get_governorate_cities(governorates[idx]))
print("Phone codes:", lb.get_phone_code())
print("Currency:", lb.get_currency())
print("Languages:", lb.get_languages())
print("Wiki:", lb.get_wiki())
```

    Flag: 🇱🇧
    Names: ['LB', 'Lebanese Republic', 'Al-Jumhūrīyah Al-Libnānīyah', 'Lebanon', 'لبنان', 'Líbano', 'Liban', 'レバノン', 'Libano']
    Capital: Beirut
    Area: 10452
    Location: Middle East
    Timezone: UTC+02:00
    Governorates: ['Akkar Governorate', 'Baalbek-Hermel Governorate', 'Beirut Governorate', 'Beqaa Governorate', 'Mount Lebanon Governorate', 'Nabatieh Governorate', 'North Governorate', 'South Governorate']
    Cities in Mount Lebanon Governorate: ['Baabda', 'Bhamdoun', 'Bhamdoûn el Mhatta', 'Caza de Baabda', 'Jbaïl', 'Jounieh']
    Phone codes: +961
    Currency: LBP
    Languages: ['Arabic', 'Armenian', 'French']
    Wiki: http://en.wikipedia.org/wiki/lebanon

