Overview
Articles are the primary legal content of each framework. Every article belongs to exactly one framework, identified by itsframework_slug. Use client.articles to list, fetch, and navigate them.
Methods
list()
Returns a page of article summaries for the given framework.
Returns
Page[ArticleSummary]
get()
Fetch the full content of a single article, including all paragraphs.
Returns
Article
related()
Fetch articles related to a given article (linked via shared requirements or tags).
Returns
Page[ArticleSummary]
iter()
Iterate over all articles in a framework across all pages.
list() (except page).
Returns Iterator[ArticleSummary]
Models
ArticleSummary
Returned by list(), related(), and iter().
Article
Returned by get(). Extends ArticleSummary with:
