Logo Lanfrica

lisan-5/Geez-2-Gregorian

Type de record:

software
Créateur:
lis
Hôte:
A Python program that converts and displays the Ethiopian calendar dates alongside the Gregorian calendar dates for a given year. The code handles both Julian and Gregorian calendar systems, includes leap year calculations, and correctly aligns the dates between the two calendars. # Ethiopian-Gregorian Calendar Converter This repository contains a Python program that converts and displays the Ethiopian calendar dates alongside the Gregorian calendar dates for a given year. It handles both Julian and Gregorian calendar systems, includes leap year calculations, and correctly aligns the dates between the two calendars. ## Features - Converts between Ethiopian and Gregorian calendars. - Handles both Julian and Gregorian calendar systems. - Correctly accounts for leap years in both calendars. - Displays calendars in a side-by-side format for easy comparison. ## Installation 1. Clone the repository: ```bash git clone github.com ``` 2. Navigate to the project directory: ```bash cd ethiopian-gregorian-calendar-converter ``` 3. (Optional) Create a virtual environment and activate it: ```bash python -m venv venv source venv/bin/activate # On Windows, use `venv\Scripts\activate` ``` 4. Install the required dependencies: ```bash pip install -r requirements.txt ``` ## Usage Run the program: ```bash python calendar_converter.py

Languages