https://github.com/matsudan/pyreinfolib
Python client for Real Estate Information Library (不動産情報ライブラリ) API service
https://github.com/matsudan/pyreinfolib
api client python real-estate
Last synced: 5 months ago
JSON representation
Python client for Real Estate Information Library (不動産情報ライブラリ) API service
- Host: GitHub
- URL: https://github.com/matsudan/pyreinfolib
- Owner: matsudan
- License: mit
- Created: 2024-11-16T11:00:07.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-09-06T16:32:51.000Z (10 months ago)
- Last Synced: 2025-11-27T19:44:30.522Z (7 months ago)
- Topics: api, client, python, real-estate
- Language: Python
- Homepage:
- Size: 65.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# pyreinfolib
国土交通省[不動産情報ライブラリ](https://www.reinfolib.mlit.go.jp/)APIサービスのPythonクライアントです。API仕様についての詳細は[API操作説明ページ](https://www.reinfolib.mlit.go.jp/help/apiManual/)をご参照ください。
## Installation
```shell
pip install pyreinfolib
```
### Supported Python Versions
Python >= 3.11
## Usage
```python
from pyreinfolib import Client
client = Client(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)