Task-level Python interface for loading Korean legal sources from law.go.kr
Project description
moleg-api
moleg-api is a task-level Python interface for loading Korean legal sources from law.go.kr. It normalizes the Ministry of Government Legislation (법제처) OpenAPI so applications and agents can retrieve legal context without memorizing individual target values, identifier rules (ID, MST, LID, JO), or per-endpoint response quirks.
You pick an interface by the legal task you need — search a statute, load an article, trace an amendment, find a delegated rule, read a Constitutional Court decision — not by a raw endpoint name. It is not a complete wrapper around every law.go.kr endpoint; the public interface is intentionally small and deep. The recurring pattern is search or plan first, then load the selected source: search hits are candidates, not citable text.
The PyPI package is moleg-api; import it as moleg_api.
Install
pip install moleg-api
Live calls use a law.go.kr OpenAPI credential (the "OC" — a free, non-secret account id). The package ships a shared default, so calls work out of the box with no registration required. To use your own OC (recommended for heavy use), register at law.go.kr and set MOLEG_OC, or pass oc= to LawGoKrClient. See Installation.
Quickstart
Python — search, then load the chosen candidate:
from moleg_api import MolegApi
api = MolegApi()
hits = api.search_laws("주택임대차보호법") # candidate identities
article = api.get_article(hits[0].identity, "제3조") # loaded source text
print(article.text)
Shell — every method is also a moleg subcommand printing one JSON envelope:
python -m moleg_api catalog # self-documenting command list
python -m moleg_api search-laws "주택임대차보호법" # → candidates with law_id
python -m moleg_api get-article --law 001248 제3조 # load the current article
python -m moleg_api get-article --law 001248 --as-of 2021-01-01 제3조 # the version in force then
Public dataclasses serialize recursively with to_dict() / to_json_string() (raw payloads omitted unless include_raw=True).
What it covers
- Current (
effective) and promulgated (promulgated) statutes and articles, including moved/deleted status - Supplementary provisions (부칙), law history, and before/after text comparison
- Historical versions — load the text in force on a past date with
as_of - Delegated rules, legal hierarchy, and administrative rules (고시·훈령·예규)
- Law and administrative-rule annex/form bodies (별표·서식)
- MOLEG and ministry legal interpretations, Supreme Court cases, and Constitutional Court (헌재) decisions
- Query expansion, comparable-mechanism discovery, and staged context bundles with executable follow-up lookups
Out of scope: legal advice, National Assembly bill data (status, votes, minutes), and latest statistics/news.
Documentation
Full documentation is in the wiki/ folder:
- Installation · Quickstart · Core Concepts
- CLI Reference · API Reference
- Historical Versions · Sources & Coverage
- Gotchas · Error Handling
Status
Alpha (0.2.x). The interface is ready for use, but law.go.kr live behavior can vary by source, credential, and endpoint availability. Treat search results as candidates until a detail loader has retrieved source text. This package is a legal-source loader, not legal advice.
License
MIT — see LICENSE.
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
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 moleg_api-0.2.1.tar.gz.
File metadata
- Download URL: moleg_api-0.2.1.tar.gz
- Upload date:
- Size: 145.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35c1882f4d5f9b5b23e335c7fc5bcec1acf79cca2439eebcd7f7e48329bb113d
|
|
| MD5 |
3300f681741706432bb7e41d29b3a270
|
|
| BLAKE2b-256 |
7aae6a9216587069d0155685e2bc3a142f3a725f775f357d5b68434909ea8771
|
Provenance
The following attestation bundles were made for moleg_api-0.2.1.tar.gz:
Publisher:
workflow.yml on tjdwls101010/MOLEG-API
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
moleg_api-0.2.1.tar.gz -
Subject digest:
35c1882f4d5f9b5b23e335c7fc5bcec1acf79cca2439eebcd7f7e48329bb113d - Sigstore transparency entry: 2064815798
- Sigstore integration time:
-
Permalink:
tjdwls101010/MOLEG-API@df85ce18b0dbbb7639cfbd191b69201cdce4ba6c -
Branch / Tag:
refs/tags/v0.2.1 - Owner: https://github.com/tjdwls101010
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
workflow.yml@df85ce18b0dbbb7639cfbd191b69201cdce4ba6c -
Trigger Event:
release
-
Statement type:
File details
Details for the file moleg_api-0.2.1-py3-none-any.whl.
File metadata
- Download URL: moleg_api-0.2.1-py3-none-any.whl
- Upload date:
- Size: 92.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74e12943d2fd4e7c898d021f865d98fab416f07126470057120b96493d6dd560
|
|
| MD5 |
a6f6751319d9f347a25ae48fead61042
|
|
| BLAKE2b-256 |
dd4c5524ef53613f46c855e96b73fd3a95632991bbd52f62246d39f791c19754
|
Provenance
The following attestation bundles were made for moleg_api-0.2.1-py3-none-any.whl:
Publisher:
workflow.yml on tjdwls101010/MOLEG-API
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
moleg_api-0.2.1-py3-none-any.whl -
Subject digest:
74e12943d2fd4e7c898d021f865d98fab416f07126470057120b96493d6dd560 - Sigstore transparency entry: 2064815811
- Sigstore integration time:
-
Permalink:
tjdwls101010/MOLEG-API@df85ce18b0dbbb7639cfbd191b69201cdce4ba6c -
Branch / Tag:
refs/tags/v0.2.1 - Owner: https://github.com/tjdwls101010
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
workflow.yml@df85ce18b0dbbb7639cfbd191b69201cdce4ba6c -
Trigger Event:
release
-
Statement type: