Python library for FOLIO, the Federated Open Legal Information Ontology
Project description
FOLIO Python Library
The FOLIO Python Library provides a simple and efficient way to interact with the Federated Open Legal Information Ontology (FOLIO).
FOLIO is an open, CC-BY licensed standard designed to represent universal elements of legal data, improving communication and data interoperability across the legal industry.
Features
- Load the FOLIO ontology from GitHub or a custom HTTP URL
- Search for classes by label or definition
- Query concepts with composable text and structural filters (label, definition, branch, parent, regex, etc.)
- Query properties by label, definition, domain, range, and inverse
- Get subclasses and parent classes
- Access detailed information about each class, including labels, definitions, and examples
- Explore semantic relationships through object properties
- Find connections between entities using labeled relationships
- Analyze property usage, domains, and ranges
- Convert classes to OWL XML, JSON-LD, or Markdown format
Changelog
The changelog can be found at CHANGES.md.
Installation
You can install the FOLIO Python library using pip:
pip install folio-python
For search features (fuzzy matching, prefix search, LLM-powered search):
pip install folio-python[search]
Note: The base install includes only
pydantic,lxml, andhttpx. Search features (search_by_label,search_by_definition,search_by_prefix,querywith fuzzy mode, and LLM search) require the[search]extra, which addsrapidfuzz,marisa-trie, andalea-llm-client.
For the latest development version, you can install directly from GitHub:
pip install --upgrade "folio-python[search] @ https://github.com/alea-institute/folio-python/archive/refs/heads/main.zip"
Quick Start
Here's a simple example to get you started with the FOLIO Python library:
from folio import FOLIO
# Initialize the FOLIO client
folio = FOLIO()
# Search by prefix
results = folio.search_by_prefix("Mich")
for owl_class in results:
print(f"Class: {owl_class.label}")
# Search for a class by label
results = folio.search_by_label("Mich")
for owl_class, score in results:
print(f"Class: {owl_class.label}, Score: {score}")
# Get all areas of law
areas_of_law = folio.get_areas_of_law()
for area in areas_of_law:
print(area.label)
# Working with object properties
properties = folio.get_all_properties()
print(f"Number of object properties: {len(properties)}")
# Get properties by label
drafted_properties = folio.get_properties_by_label("folio:drafted")
for prop in drafted_properties:
print(f"Property: {prop.label}")
print(f"Domain: {[folio[d].label for d in prop.domain if folio[d]]}")
print(f"Range: {[folio[r].label for r in prop.range if folio[r]]}")
# Find connections between entities
connections = folio.find_connections(
subject_class="https://folio.openlegalstandard.org/R8CdMpOM0RmyrgCCvbpiLS0", # Actor/Player
property_name="folio:drafted"
)
for subject, property_obj, object_class in connections:
print(f"{subject.label} {property_obj.label} {object_class.label}")
Structured Queries
Use query() and query_properties() for precise, composable filtering:
from folio import FOLIO
folio = FOLIO()
# Find concepts with "trust" in any text field, limited to Area of Law branch
results = folio.query(any_text="trust", branch="AREA_OF_LAW")
for cls in results:
print(f"{cls.label}: {cls.definition}")
# Regex match on labels
results = folio.query(label="^Contract", match_mode="regex", limit=5)
# Leaf concepts (no children) within a specific parent
results = folio.query(
parent_iri="RSYBzf149Mi5KE0YtmpUmr", # Area of Law
has_children=False,
limit=10,
)
# Find properties that have an inverse
props = folio.query_properties(has_inverse=True)
for p in props:
print(f"{p.label} <-> {p.inverse_of}")
Match modes: "substring" (default), "exact", "regex", "fuzzy"
Searching with an LLM
# Search with an LLM
async def search_example():
for result in await folio.parallel_search_by_llm(
"redline lease agreement",
search_sets=[
folio.get_areas_of_law(max_depth=1),
folio.get_player_actors(max_depth=2),
],
):
print(result)
import asyncio
asyncio.run(search_example())
LLM search uses the alea_llm_client to provide abstraction across multiple APIs and providers. Requires pip install folio-python[search].
Migrating from soli-python? The
soli-pythonpackage (v0.1.x) has been renamed tofolio-python. Uninstall the old package (pip uninstall soli-python) and installfolio-pythonto avoid dependency conflicts.
Documentation
For more detailed information about using the FOLIO Python library, please refer to our full documentation.
Contributing
We welcome contributions to the FOLIO Python library! If you'd like to contribute, please follow these steps:
- Fork the repository
- Create a new branch for your feature or bug fix
- Make your changes and write tests if applicable
- Run the test suite to ensure everything is working
- Submit a pull request with a clear description of your changes
For more information, see our contribution guidelines.
FOLIO API
A public, freely-accessible API is available for the FOLIO ontology.
The API is hosted at https://folio.openlegalstandard.org/.
The source code for the API is available on GitHub at https://github.com/alea-institute/folio-api.
License
The FOLIO Python library is released under the MIT License. See the LICENSE file for details.
Support
If you encounter any issues or have questions about using the FOLIO Python library, please open an issue on GitHub.
Learn More
To learn more about FOLIO, its development, and how you can get involved, visit the FOLIO website or join the FOLIO community forum.
Project details
Release history Release notifications | RSS feed
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 folio_python-0.3.0.tar.gz.
File metadata
- Download URL: folio_python-0.3.0.tar.gz
- Upload date:
- Size: 26.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a3b6c3198eb1d90a36c36f592ad58bee2cdbe676f1d18dc2c87aba392042e88
|
|
| MD5 |
862dbf5e6d1889433b11614f778fff1c
|
|
| BLAKE2b-256 |
b76d97e292111f992191a100a6b4bef173544e43ed3b522ddbf9441f7b6d3a7b
|
File details
Details for the file folio_python-0.3.0-py3-none-any.whl.
File metadata
- Download URL: folio_python-0.3.0-py3-none-any.whl
- Upload date:
- Size: 26.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af8ff75017fa3994f7a3fb40970835cbb62bc353eeaea85e9a7811a306aebc53
|
|
| MD5 |
aa13286eef36e3afa9ce9ff61bdaa6b1
|
|
| BLAKE2b-256 |
c4c2fb647457499e050a7246cb0cef57e490b4a8366e01c005d76ef0718962de
|