Metadata-Version: 2.1
Name: nepali_date_utils
Version: 0.3.1
Summary: Convert Nepali to English Dates: Easily switch between Nepali and English dates with this Python package.
Home-page: https://github.com/nrjadkry/nepali-date-utils
Author: Niraj Adhikari
Author-email: nrjadkry@gmail.com
License: GPLv3
Keywords: date,nepali-date
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# Nepali Date Utils

[![PyPI version](https://badge.fury.io/py/nepali-date-utils.svg)](https://pypi.org/project/nepali-date-utils/)
[![CI status](https://github.com/nrjadkry/nepali-date-utils/actions/workflows/python-publish.yml/badge.svg?branch=master)](https://github.com/opensource-nepal/py-nepali/actions)
[![Downloads](https://img.shields.io/pypi/dm/nepali-date-utils.svg?maxAge=180)](https://pypi.org/project/nepali-date-utils/)


## Overview
This lightweight package allows easy conversion between Nepali (BS) and English (AD) dates. Simplify date transformations in your applications with this straightforward utility.

## Installation
You can install the package via pip:
```bash
pip install nepali_date_utils
```

To convert English date (AD) to Nepali date (BS):

```python
from nepali_date_utils import converter
converter.ad_to_bs("2024/02/03")
```

To convert Nepali date (BS) to English date (AD):

```python
from nepali_date_utils import converter
converter.bs_to_ad("2080/02/03")
```
