Skip to content

InnoSoft-Company/egydata

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Egydata


🚀 Project Identity & Versioning

Badge Type Markdown Code
PyPI Version PyPI Version
GitHub Release GitHub Release
GitHub Tag GitHub Tag
License License: MIT
PyPI Status PyPI Status

📊 Stats & Downloads

Badge Type Markdown Code
Total Downloads (Pepy) Total Downloads
Monthly Downloads (Pepy) Monthly Downloads
Weekly Downloads (Pepy) Weekly Downloads
PyPI Downloads (Daily) PyPI Downloads
PyPI Downloads (Weekly) PyPI Downloads
PyPI Downloads (Monthly) PyPI Downloads

🛠️ Activity & Development

Badge Type Markdown Code
Last Commit GitHub last commit
Commit Activity (Yearly) GitHub commit activity
Contributors GitHub contributors
Repo Size GitHub repo size
Code Size GitHub code size in bytes
Top Language GitHub top language
Language Count GitHub language count

✨ Quality & Testing

Badge Type Markdown Code
Build Status Build Status
Coverage Coverage
Code Quality Code Quality
Typing Typing
PyPI Types PyPI - Types

🐍 Environment & Compatibility

Badge Type Markdown Code
Python Versions Python Versions
PyPI Implementation PyPI Implementation
PyPI Wheel PyPI Wheel
PyPI Format PyPI Format

🤝 Community & Social

Badge Type Markdown Code
GitHub Stars GitHub stars
GitHub Forks GitHub forks
GitHub Watchers GitHub watchers
GitHub Followers GitHub followers
GitHub Discussions GitHub Discussions

🛠️ Support & Maintenance

Badge Type Markdown Code
Open Issues GitHub issues
Closed Issues GitHub issues-closed
Open PRs GitHub pull requests
Closed PRs GitHub pull requests-closed
Milestones GitHub milestones

Structured Egyptian geographical and timezone data for Python.

Provides a complete, offline dataset of Egyptian governorates, cities, landline and mobile area codes, and timezone utilities — with zero dependencies (uses Python standard library only).

View on GitHub | View on PyPI


Installation

pip install egydata

Quick Start

from egydata import governorates, cities, phoneAreas, timezones

# Get all governorates
all_govs = governorates.get_all()

# Find a city by name
maadi = cities.search("Maadi")

# Check current time in Egypt
now = timezones.now()

Usage

Governorates

from egydata import governorates

# Get all 27 governorates
all_govs = governorates.get_all()
# [{'id': 1, 'code': 'CAI', 'name': 'القاهرة', 'nameEn': 'Cairo'}, ...]

# Find by code
cairo = governorates.get_by_code("CAI")
# {'id': 1, 'code': 'CAI', 'name': 'القاهرة', 'nameEn': 'Cairo'}

# Find by id
alex = governorates.get_by_id(2)
# {'id': 2, 'code': 'ALX', 'name': 'الإسكندرية', 'nameEn': 'Alexandria'}

# Search (Arabic, English, or code, partial match)
results = governorates.search("alex")
# [{'id': 2, 'code': 'ALX', 'name': 'الإسكندرية', 'nameEn': 'Alexandria'}]

ar_results = governorates.search("القاهرة")
# [{'id': 1, 'code': 'CAI', 'name': 'القاهرة', 'nameEn': 'Cairo'}]

Cities

from egydata import cities

# Get cities by governorate code
cairo_cities = cities.get_by_governorate("CAI")
# [{'id': 1, 'name': 'مدينة نصر', 'nameEn': 'Nasr City', 'governorateCode': 'CAI'}, ...]

# Find by id
sharm = cities.get_by_id(131)
# {'id': 131, 'name': 'شرم الشيخ', 'nameEn': 'Sharm El Sheikh', 'governorateCode': 'SIS'}

# Search cities (Arabic or English, partial match)
found = cities.search("Maadi")
# [{'id': 3, 'name': 'المعادي', 'nameEn': 'Maadi', 'governorateCode': 'CAI'}]

Phone Area Codes

from egydata import phoneAreas

# Get all area codes (landline and mobile)
all_codes = phoneAreas.get_all()
# [{'code': '010', 'region': 'ڤودافون', 'regionEn': 'Vodafone'}, ...]

# Look up region by code
region = phoneAreas.get_region("03")
# {'code': '03', 'region': 'الإسكندرية', 'regionEn': 'Alexandria'}

# Find area code by region name (Arabic or English)
entry = phoneAreas.get_code("Mansoura")
# {'code': '050', 'region': 'الدقهلية (المنصورة)', 'regionEn': 'Dakahlia (Mansoura)'}

Timezone

from egydata import timezones

print(timezones.name)      # 'Africa/Cairo'
print(timezones.offset)    # '+02:00' (standard time offset)

now = timezones.now()      # current date/time in Egypt (timezone-aware datetime)
print(now.isoformat())

# Check if daylight saving time is active (Egypt resumed DST in 2023)
is_dst = timezones.isDST() # returns True if current offset is +03:00

# Optionally check a specific date
from datetime import datetime
date = datetime(2024, 8, 1)
print(timezones.isDST(date))  # True (during DST period)

API Reference

governorates

Method Parameters Returns Description
get_all() list<Governorate> Returns all 27 Egyptian governorates.
get_by_code(code) code: str Governorate | None Find governorate by its code (e.g., 'CAI').
get_by_id(id) id: int/str Governorate | None Find governorate by its numeric ID.
search(query) query: str list<Governorate> Search by Arabic/English name or code (case‑insensitive, partial).

Governorate shape: {'id': int, 'code': str, 'name': str, 'nameEn': str}


cities

Method Parameters Returns Description
get_by_governorate(gov_code) gov_code: str list<City> Get all cities in a governorate (by its code).
get_by_id(id) id: int/str City | None Find city by its numeric ID.
search(query) query: str list<City> Search by Arabic or English name (partial, case‑insensitive).

City shape: {'id': int, 'name': str, 'nameEn': str, 'governorateCode': str}


phoneArea

Method Parameters Returns Description
get_all() list<AreaCode> Returns all landline and mobile area codes.
get_region(code) code: str AreaCode | None Look up region info by area code.
get_code(region_name) region_name: str AreaCode | None Find area code entry by region name (Arabic or English).

AreaCode shape: {'code': str, 'region': str, 'regionEn': str}


timezone

Property / Method Returns Description
name 'Africa/Cairo' IANA timezone identifier.
offset '+02:00' Standard UTC offset (without DST).
now() datetime Current date and time in Egypt (timezone‑aware).
isDST(date=None) bool Whether DST is active (for given date or now).

Data Coverage

· 27 governorates with Arabic and English names and ISO‑like codes. · 151 cities and districts across all governorates. · 30 landline and mobile area codes (including mobile operators). · Full timezone support for Africa/Cairo (DST‑aware).

All data is embedded in the package – no network requests, no external dependencies.


Requirements

· Python 3.9 or later (uses standard library zoneinfo; for Python 3.8 you may need the backports.zoneinfo package).


License

MIT - InnoSoft Company

About

Structured data for Egypt: Governorates, Cities, Area Codes & Timezone helpers. Zero dependencies.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages