Metadata-Version: 2.4
Name: matjipyojeong
Version: 0.1.1
Summary: 지역 기반 식당 검색을 위한 파이썬 라이브러리
Author: Bonitabueno
Author-email: Bonitabueno <admin@0331project.dooray.com>
License: MIT
Project-URL: Homepage, https://0331project.tistory.com/
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: pandas
Dynamic: author
Dynamic: license-file
Dynamic: requires-python

# 🍜 matjipyojeong (맛집요정)

지역기반 식당 정보를 제공하는 파이썬 라이브러리입니다.

</br>

## ✨ 기능 소개

- 지역(도시/구/동), 업종, 메뉴, 역 정보를 기반으로 추천
- CSV 기반 식당 데이터 처리
- 간단한 자연어 입력으로 자동 필터링

</br>

## 📦 설치 방법

```bash
pip install matjipyojeong
```

</br>

## 사용예시

```bash
from matjipyojeong import search_restaurants

result = search_restaurants("성수동 맛집 알려줘")

if isinstance(result, dict):
    print(f"상호 : {result['restaurant_name']}")
    print(f"업종 : {result['restaurant_type']}")
    print(f"주소 : {result['address']}")
    print(f"대표메뉴 : {result['main_menu']}")
    print(f"주변역 : {result['station']}")
    print(f"링크 : {result['link']}") # 네이버 또는 카카오 링크 제공
else:
    print(result)  # 예: "정보가 없습니다." 메시지 출력
```

</br>

## 📝 라이선스

이 프로젝트는 MIT 라이선스에 따라 자유롭게 사용할 수 있습니다.  

```bash
MIT License

Copyright (c) 2025 Bonitabueno

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy,
modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom
the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of
the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
```

</br>
