Links
AI / Agents
gdtest-ug-custom-dir
Test user guide in custom directory.
Installation
pip install gdtest-ug-custom-dirGet Started
- API Reference — Full API documentation
- User Guide — Guides and tutorials
Source files
docs/
getting-started.qmd
--- title: Getting Started --- # Getting Started A guide to getting started with the library.
reference-guide.qmd
--- title: Reference Guide --- # Reference Guide A comprehensive reference guide for all features.
gdtest_ug_custom_dir/
__init__.py
"""Test package for custom user guide directory."""
core.py
"""Core load/save functions."""
def load(path: str) -> dict:
"""Load data from the given file path.
Parameters
----------
path : str
The path to load data from.
Returns
-------
dict
The loaded data as a dictionary.
Examples
--------
>>> load("config.json")
{'key': 'value'}
"""
return {}
def save(data: dict) -> None:
"""Save data to persistent storage.
Parameters
----------
data : dict
The data to save.
Examples
--------
>>> save({"key": "value"})
"""
passgreat-docs.yml
user_guide: docs