Metadata-Version: 2.4
Name: py-mealdb
Version: 1.0.0
Summary: The MealDB API wrapper
Author: Sherwin Varghese
Author-email: Sherwin Varghese <varghesesheriwn@gmail.com>
License-Expression: EPL-2.0
Requires-Dist: httpx>=0.28.1
Requires-Dist: mypy>=1.19.1
Requires-Dist: quarto>=0.1.0
Requires-Dist: quartodoc>=0.11.1
Project-URL: repository, https://github.com/Sherwin-14/py-mealdb/
Project-URL: documentation, https://sherwin-14.github.io/py-mealdb/
Description-Content-Type: text/markdown

# py-mealdb ![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/sherwin-14/py-mealdb/tests.yml) ![PyPI - Version](https://img.shields.io/pypi/v/py-mealdb) [![License: LGPL v3](https://img.shields.io/badge/License-LGPL_v3-blue.svg)](https://www.gnu.org/licenses/lgpl-3.0) ![GitHub Repo stars](https://img.shields.io/github/stars/Sherwin-14/py-mealdb) [![PyPI Downloads](https://static.pepy.tech/personalized-badge/py-mealdb?period=monthly&units=INTERNATIONAL_SYSTEM&left_color=BLACK&right_color=GREEN&left_text=downloads)](https://pepy.tech/projects/py-mealdb) [![PyPI Downloads](https://static.pepy.tech/badge/py-mealdb)](https://pepy.tech/projects/py-mealdb)

py-mealdb is a Python library that allows users to interact effortlessly with TheMealDB API, providing access to a vast collection of meal recipes, ingredients, and culinary inspiration from around the world.

## 📚 Table of Contents

1. [Installation](#-installation) 
2. [Quick Start](#️-quick-start) 
3. [Documentation](#-documentation)
4. [Contributing](#-contributing)
5. [License](#-license)
6. [Code of Conduct](#-code-of-conduct)

## 💻 Installation

```py
pip install py-mealdb
```

## 🏃‍♂️ Quick Start

```py
from py_mealdb import MealDB

mb = MealDB(API_KEY)
meals = mb.get_meal_by_name('Potato Salad')
print(meals.names)        # ['Potato Salad']
print(meals[0]['strMeal']) # 'Potato Salad'
```

## 🤝 Contributing
If you'd like to contribute to the package, please submit a pull request or report an issue on the issue tracker.

## 📄 Documentation
For more information, please refer to our [Documentation](https://sherwin-14.github.io/py-mealdb/).

## 🚫 Code of Conduct
For more information about code of conduct click here [Conduct](https://github.com/Sherwin-14/py-mealdb/blob/main/CODE_OF_CONDUCT.md).

## 📜 License
This project is licensed under the EPL-2.0
