Skip to main content

Python library created by InnoSoft-Company tech team for Egyptian data: cities, governorates, timezones, phone numbers, etc.

Project description

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

egydata-1.1.0.tar.gz (15.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

egydata-1.1.0-py3-none-any.whl (13.1 kB view details)

Uploaded Python 3

File details

Details for the file egydata-1.1.0.tar.gz.

File metadata

  • Download URL: egydata-1.1.0.tar.gz
  • Upload date:
  • Size: 15.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for egydata-1.1.0.tar.gz
Algorithm Hash digest
SHA256 9df734d6ad102e59725330b6693d906e541b284b74dae152ea76809e4bc10666
MD5 fc66cf80a66790e01e5dede647c6e0b4
BLAKE2b-256 b70286fa360171e92b5255a33603e434a1fa44784d2130cf5cdd74a49d2ac6c0

See more details on using hashes here.

File details

Details for the file egydata-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: egydata-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 13.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for egydata-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 492ee5b4352220742b611570cb87b5b7be00e1cbb503507208393376b2cac17c
MD5 81a603d6ab96f714eee3ce8dc7bd3fc3
BLAKE2b-256 d733fbee51e15ec46f353caaa262598f2331e5a7783be91619613df953d9e800

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page