Metadata-Version: 2.4
Name: kumc
Version: 0.1.1
Summary: Korea University Anam Hospital internal API for Python SDK
Author-email: Euiseo Cha <zeroday0619_dev@outlook.com>
Maintainer-email: Euiseo Cha <zeroday0619_dev@outlook.com>
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)
License-File: LICENSE
Requires-Dist: anyio>=4.2.0
Requires-Dist: certifi>=2023.11.17
Requires-Dist: fake-useragent>=1.4.0
Requires-Dist: h11>=0.14.0
Requires-Dist: httpcore>=1.0.2
Requires-Dist: httpx>=0.26.0
Requires-Dist: idna>=3.6
Requires-Dist: sniffio>=1.3.0
Requires-Dist: soupsieve>=2.5
Requires-Dist: wheel>=0.42.0
Project-URL: Source, https://github.com/zeroday0619/anamSDK.git

# Korea University Anam Hospital internal API for Python SDK
KUMC Internel API for Python SDK


## Usage

### Example code
```python
import json
import asyncio
from kumc import KUMCClient

async def main():
    app = KUMCClient()

    await app.sign_in()
    resp = await app.get_hospitalization_and_discharge_history(hpCd="AA", inqrStrtYmd=20220130)
    print(
        json.dumps(
            resp, 
            indent=4, 
            ensure_ascii=False
        )
    )


if __name__ == "__main__":
    asyncio.run(main())
```

## **Disclaimer**
This project has been developed for research purposes and the creators are not responsible for anything that happens as a result of using this project. We would also like to inform you that the project may be taken down at any time by the demands of KUMC.

## **License**
Licensed under the [LGPL-2.1](./LICENSE)
