Minibook for reporting
This project has been archived.
The maintainers of this project have marked this project as archived. No new releases are expected.
Project description
📦 minibook
📚 MiniBook
MiniBook is a simple tool that creates a minibook from a list of links. It generates a clean, responsive HTML webpage using Jinja2 templates and Tailwind CSS.
📋 Usage
MiniBook can be used to create an HTML page from a list of links.
Example
Create an HTML page with a custom title and three links:
minibook --title "My Favorite Sites" \
--output "artifacts" \
--links '{"python": "https://www.python.org", "github": "https://www.github.com", "wikipedia": "https://www.wikipedia.org"}'
Different JSON Formats for Links
MiniBook supports several JSON formats for the links parameter:
- Dictionary Format (used in previous examples):
minibook --title "My Favorite Sites" \
--output "artifacts" \
--links '{"python": "https://www.python.org", "github": "https://www.github.com", "wikipedia": "https://www.wikipedia.org"}'
- List of Objects Format:
minibook --title "My Favorite Sites" \
--output "artifacts" \
--links '[{"name": "Python", "url": "https://www.python.org"}, {"name": "GitHub", "url": "https://www.github.com"}, {"name": "Wikipedia", "url": "https://www.wikipedia.org"}]'
- List of Arrays Format:
minibook --title "My Favorite Sites" \
--output "artifacts" \
--links '[["Python", "https://www.python.org"], ["GitHub", "https://www.github.com"], ["Wikipedia", "https://www.wikipedia.org"]]'
- Multi-line JSON Format (useful in YAML files):
minibook --title "My Favorite Sites" \
--output "artifacts" \
--links '{
"Python": "https://www.python.org",
"GitHub": "https://www.github.com",
"Wikipedia": "https://www.wikipedia.org"
}'
These formats allow you to specify different names for each link, rather than using the URL as the name.
Validating Links
You can validate that all links are accessible before creating the minibook:
minibook --title "My Favorite Sites" \
--output "artifacts" \
--links '{"python": "https://www.python.org", "github": "https://www.github.com"}' \
--validate-links
This will check each link to ensure it's accessible. If any links are invalid, you'll be prompted to continue or abort.
🔄 GitHub Action
MiniBook is also available as a GitHub Action that you can use in your workflows to generate documentation sites.
Using the Action
To use the MiniBook action in your GitHub workflow:
- name: Generate Minibook
uses: tschm/minibook/.github/actions/book@main
with:
title: "My Documentation"
subtitle: "Documentation for my project"
links: |
{
"GitHub": "https://github.com",
"Tests": "./tests/index.html",
"API Reference": "./api/index.html"
}
Action Inputs
| Input | Description | Required | Default |
|---|---|---|---|
title |
Title of the minibook | No | "My Links" |
subtitle |
Description of the minibook | No | "" |
links |
JSON formatted links | Yes | N/A |
template |
Path to a custom Jinja2 template file for HTML output | No | "" |
output |
Output directory for generated files | No | "artifacts" |
Complete Example
When using this action with GitHub Pages, you must set the following permissions in your workflow:
contents: read: To read repository contentspages: write: To deploy to GitHub Pagesid-token: write: For authentication during deployment
You must also set the environment to github-pages for GitHub Pages deployment:
Here's a complete workflow example that generates a minibook and deploys it to GitHub Pages:
# Workflow name - appears in the GitHub Actions UI
name: "Documentation"
# Trigger configuration - when should this workflow run
on:
push:
branches:
- main # Run only when changes are pushed to the main branch
# Permissions required for GitHub Pages deployment
permissions:
contents: read # Read access to repository contents
pages: write # Write access to GitHub Pages
id-token: write # Write access to OIDC token for authentication
# Environment configuration for GitHub Pages
environment:
name: github-pages # Predefined GitHub Pages environment
# Jobs that make up this workflow
jobs:
# Job to run tests and generate test reports
test:
runs-on: ubuntu-latest # Use the latest Ubuntu runner
steps:
# Step 1: Check out the repository code
- name: Checkout repository
uses: actions/checkout@v4 # Official GitHub checkout action
# Step 2: Run your test suite
- name: Run tests
# Your test execution step here
# This could be another action or custom script
# Example: run pytest, jest, or other test frameworks
# Step 3: Upload test results as an artifact for later use
- name: Upload test results
uses: actions/upload-artifact@v4 # Official GitHub artifact upload action
with:
name: test-results # Name of the artifact
path: tests/ # Directory containing test results to upload
# Job to generate API documentation
pdoc:
runs-on: ubuntu-latest # Use the latest Ubuntu runner
steps:
# Step 1: Check out the repository code
- name: Checkout repository
uses: actions/checkout@v4 # Official GitHub checkout action
# Step 2: Generate API documentation
- name: Generate API docs
# Your API documentation generation step here
# This could be pdoc3, Sphinx, JSDoc, or other documentation tools
# Example: pdoc --html --output-dir pdoc/ your_package/
# Step 3: Upload API documentation as an artifact for later use
- name: Upload API documentation
uses: actions/upload-artifact@v4 # Official GitHub artifact upload action
with:
name: api-docs # Name of the artifact
path: pdoc/ # Directory containing API docs to upload
# Job to build and publish the book documentation
book:
runs-on: ubuntu-latest # Use the latest Ubuntu runner
needs: [test, pdoc] # This job will only run after test and pdoc jobs complete successfully
steps:
# Generate Minibook and Deploy to GitHub Pages
# The book action automatically downloads all artifacts from the jobs defined in needs
- name: Generate Minibook and Deploy to GitHub Pages
uses: tschm/minibook/.github/actions/book@main # Use the minibook action
with:
# Title that appears at the top of the generated page
title: "Project Documentation"
# Subtitle/description that appears below the title
subtitle: "Documentation and useful links for the project"
# JSON object defining links to include in the minibook
# Each key is the link text, and each value is the URL
links: |
{
"GitHub": "https://github.com/username/repo",
"API Reference": "./artifacts/api-docs/index.html", # Link to the API docs artifact
"Test Results": "./artifacts/test-results/html-report/report.html" # Link to the test results artifact
}
👥 Contributing
- 🍴 Fork the repository
- 🌿 Create your feature branch (git checkout -b feature/amazing-feature)
- 💾 Commit your changes (git commit -m 'Add some amazing feature')
- 🚢 Push to the branch (git push origin feature/amazing-feature)
- 🔍 Open a Pull Request
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 minibook-0.0.16.tar.gz.
File metadata
- Download URL: minibook-0.0.16.tar.gz
- Upload date:
- Size: 8.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f67f4bf73ca0088bd1b1035fd72072522d687edc7bebf4d2543b49fd5d7636c1
|
|
| MD5 |
e2d70829bc235d497df0c2cf636c3e9c
|
|
| BLAKE2b-256 |
be8dc21070e2962967514abdff9aada88c65d11670ca4af2d9d3941e19d95dcb
|
Provenance
The following attestation bundles were made for minibook-0.0.16.tar.gz:
Publisher:
release.yml on tschm/minibook
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
minibook-0.0.16.tar.gz -
Subject digest:
f67f4bf73ca0088bd1b1035fd72072522d687edc7bebf4d2543b49fd5d7636c1 - Sigstore transparency entry: 257431350
- Sigstore integration time:
-
Permalink:
tschm/minibook@4b441eba97e7fa65a3cfa7598e555f3c5c27887e -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tschm
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@4b441eba97e7fa65a3cfa7598e555f3c5c27887e -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file minibook-0.0.16-py3-none-any.whl.
File metadata
- Download URL: minibook-0.0.16-py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6873a81c2735630733bae7f87bc6eb5731bfcf9b61067753ba8ea636f94e287
|
|
| MD5 |
84d289e6a72bc94cb5017c3b1584db8c
|
|
| BLAKE2b-256 |
c5aa726a5e929eecab80fe28cfbdb7c960febfe75b3ff7f4a674495b475c3546
|
Provenance
The following attestation bundles were made for minibook-0.0.16-py3-none-any.whl:
Publisher:
release.yml on tschm/minibook
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
minibook-0.0.16-py3-none-any.whl -
Subject digest:
b6873a81c2735630733bae7f87bc6eb5731bfcf9b61067753ba8ea636f94e287 - Sigstore transparency entry: 257431356
- Sigstore integration time:
-
Permalink:
tschm/minibook@4b441eba97e7fa65a3cfa7598e555f3c5c27887e -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tschm
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@4b441eba97e7fa65a3cfa7598e555f3c5c27887e -
Trigger Event:
workflow_dispatch
-
Statement type: