Parser for converting python docstrings to .astro files for the Astro static site generator.
Project description
Yapper
Yapper converts Python docstrings to astro files for use by the Astro static site generator.
It uses griffe to parse python modules and extracts numpy style docstrings.
Docstrings and parameter descriptions will be passed through as raw markdown wrapped in Astro <Markdown is:raw></Markdown> components.
Class and function elements are wrapped with html with css classes that can be styled from Astro.
See the
cityseer.benchmarkurbanism.comdocumentation site and associated docs repo for a working example.
Conversion of markdown formatting, code blocks, admonitions, etc., is all handled downstream by Astro's remark and rehype plugins. Styling is likewise handled downstream via css targeting the associated element classes.
Configuration
Configuration is provided in pyproject.toml file placed in the current directory, else a --config parameter can be provided with a relative or absolute filepath to a toml config file.
yapper --config ./custom_config.toml
The toml file must include a [tool.yapper] section, with keys corresponding to the default configuration options:
[tool.yapper]
package_root_relative_path = './'
intro_template = """
---\n
import { Markdown } from 'astro/components';\n
---\n
"""
outro_template = ""
module_map = [
{ module = "test.mock_file", astro = "./tests/mock_default.astro" },
]
If you want to wrap the .astro output in a particular layout, then set the intro_template and outro_template accordingly, for example, the following will import the PageLayout layout and will wrap the generated content accordingly:
[tool.yapper]
package_root_relative_path = './'
intro_template = """
---\n
import { Markdown } from 'astro/components';\n
import PageLayout from '../layouts/PageLayout.astro'\n
---\n
\n
<PageLayout>
"""
outro_template = """
</PageLayout>\n
"""
module_map = [
{ module = "test.mock_file", py = "./tests/mock_file.py", astro = "./tests/mock_default.astro" },
]
The module_map is mandatory and specifies the names of the python modules to be processed via the module key and an astro key corresponding to the output file:
Development
yapper uses a pyproject.toml file to specify project dependencies and scripts related to project development and publishing.
See pyproject.toml for available scripts.
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 yapper-0.5.0.tar.gz.
File metadata
- Download URL: yapper-0.5.0.tar.gz
- Upload date:
- Size: 17.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9455a69a2d1a6417374b641ba6ccc3e66625ddf6f0cbb3979316800be948afca
|
|
| MD5 |
b7130e67d799e11d4aacb83b45c4bbcd
|
|
| BLAKE2b-256 |
8420dfbd9d12d16fc7ef93975595d8530fb53c53209aad8421bd23117d170b37
|
File details
Details for the file yapper-0.5.0-py3-none-any.whl.
File metadata
- Download URL: yapper-0.5.0-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2bf20fceda7fd74fc85e4dfacae5dcdc8777d2bc164987f93110aaefa70592ce
|
|
| MD5 |
71b82b292c813d7bf6746222d686bbb0
|
|
| BLAKE2b-256 |
7ab69675e738ce78a2722e2c638165f26937eb812e07a07913a7032f09e6750b
|