Metadata-Version: 2.3
Name: pyreinfolib
Version: 0.1.0
Summary: Python client for Real Estate Information Library APIs
Project-URL: Homepage, https://github.com/matsudan/pyreinfolib
Author-email: matsudan <daaamatsun@gmail.com>
Keywords: api,client,real-estate
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.11
Requires-Dist: requests
Description-Content-Type: text/markdown

# pyreinfolib

国土交通省[不動産情報ライブラリ](https://www.reinfolib.mlit.go.jp/)APIサービスのPythonクライアントです。API仕様についての詳細は[API操作説明ページ](https://www.reinfolib.mlit.go.jp/help/apiManual/)をご参照ください。

## Installation

```

```

### Supported Python Versions

Python >= 3.11

## Usage

```python
from pyreinfolib import Client

client = Client(api_key="<your api key>")
```

## Example

### 不動産価格（取引価格・成約価格）情報

```python
client.get_real_estate_prices(year=2024, quarter=1, price_classification="01", city="13109")
```

### 鑑定評価書情報

```python
from pyreinfolib.enums import UseDivision

client.get_appraisal_reports(year=2024, area="13", division=UseDivision.INDUSTRIAL_LAND)
```

## Author

@matsudan (daaamatsun@gmail.com)
