Generate static HTML indexes of various repository types
repo-autoindex
provides a minimal CLI and Python library to generate static HTML indexes
for certain types of content, such as yum repositories.
pip install repo-autoindex
REPO_URL=$(curl -s 'https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f36&arch=x86_64' | egrep '^http' | head -n1)
repo-autoindex $REPO_URL
xdg-open index.html
See the manual for more
information about the usage of repo-autoindex
.
- Ensure directories always appear first in indexes.
- Support streamed fetching to reduce memory usage when fetching large files.
- Add
py.typed
to make package PEP 561 compliant / enable downstream type-checking.
- Fix handling of kickstart repositories with no checksums in treeinfo.
- Added limited support for kickstart repositories.
- Reduced memory usage when handling large yum repositories.
- Use correct SPDX license identifier in package metadata.
- Initial stable release.
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.