Metadata-Version: 2.4
Name: ymrp
Version: 0.2.0
Summary: Yandex map reviews parser
Author-email: Miron <berchetov@gmail.com>
License-Expression: Apache-2.0
Requires-Python: >=3.13
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: beautifulsoup4>=4.13.4
Requires-Dist: playwright>=1.53.0
Dynamic: license-file

# ymrp

## Requirements

YMRP stands on the shoulders of:
 - python 3.13
 - playwright
 - beautifulsoup4

## Installation

Create and activate a virtual environment and then install YMRP:

```sh
pip install ymrp
```

Install playwright dependencies

```sh
playwright install chromium
playwright install-deps
```

## Example

```python
from ymrp import Parser

p = Parser()
reviews = p.get_yandex_reviews()

for review in reviews:
    print(review)

```
