Sayou Healthcare for 의약품안전나라, 건강보험심사평가원, 보건의료빅데이터개방시스템, 약학정보원
Project description
sayou-healthcare
- 의약품안전나라 > 의약품등 제품정보 검색
- 건강보험심사평가원 > 약제급여목록표 > 약제정보
- 보건의료빅데이터개방시스템 > 공공데이터 > 전국 병의원 및 약국 현황
- 약학정보원 > 의약품 상세검색
사이트 링크
설치
pip install sayou-healthcare
사용 예시
약학정보원 > 의약품 상세검색
from sayou.healthcare.health import HealthCrawler
# Health Crawler 초기화
crawler = HealthCrawler()
medicines = crawler.medicines()
for medicine in medicines:
print(medicine)
건강보험심사평가원 > 약제급여목록표 > 약제정보
from sayou.healthcare.hira import HiraCrawler
# Hira Crawler 초기화
crawler = HiraCrawler()
data = crawler.download()
for medicine in data.medicines:
print(medicine)
보건의료빅데이터개방시스템 > 공공데이터 > 전국 병의원 및 약국 현황
from sayou.healthcare.hira import HiraCrawler
# Hira Crawler 초기화
crawler = HiraCrawler()
data = crawler.opendata()
print(f"Download File: {data.download_file.filename}")
print(f"Extracted Files: {data.extracted_files}")
print(f"Hospital Data: {data.hospital_data.filename}")
for hospital in data.hospital_data.rows:
print(hospital)
print(f"Pharmacy Data: {data.pharmacy_data.filename}")
for pharmacy in data.pharmacy_data.rows:
print(pharmacy)
의약품안전나라 > 의약품등 제품정보 검색
from sayou.healthcare.nedrug import NedrugCrawler
# Nedrug Crawler 초기화
crawler = NedrugCrawler()
data = crawler.download()
for medicine in data.medicines:
print(medicine)
Plugin List
| Plugin | Example | Description |
|---|---|---|
Health Crawler |
▶ | 약학정보원 의약품 조회 |
HIRA Crawler |
▶ | 건강보험심사평가원 약재정보 및 전국 병의원, 약국 현황 |
Nedrug Crawler |
▶ | 의약품안전나라 의약품정보 |
License
Apache 2.0 License © 2025-2026 Sayouzone
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
sayou_healthcare-0.0.8.tar.gz
(36.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sayou_healthcare-0.0.8.tar.gz.
File metadata
- Download URL: sayou_healthcare-0.0.8.tar.gz
- Upload date:
- Size: 36.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63e308f9c6027623353019360249f46ddfed12383358e6ce2cc60eaa0c2dc8d5
|
|
| MD5 |
de41d009335a9eb482f27e63157e078a
|
|
| BLAKE2b-256 |
e8d5b909b2b0e453bdce932ab5d41dab0937d16ac2f7e21f1301df394a904aa1
|
File details
Details for the file sayou_healthcare-0.0.8-py3-none-any.whl.
File metadata
- Download URL: sayou_healthcare-0.0.8-py3-none-any.whl
- Upload date:
- Size: 60.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7171aaf6f3a3d1d3bfb66dc99b9b4b9df356038eafec555e4ba27f15f28da2fa
|
|
| MD5 |
176b73080117bf3d8de72f85e422d546
|
|
| BLAKE2b-256 |
20716d0d9b21d087f85ce74973f32b217b75d840f55950a68d6762d5b354bf75
|