https://github.com/release-engineering/repo-autoindex
Generate static HTML indexes of various repository types
https://github.com/release-engineering/repo-autoindex
Last synced: about 1 year ago
JSON representation
Generate static HTML indexes of various repository types
- Host: GitHub
- URL: https://github.com/release-engineering/repo-autoindex
- Owner: release-engineering
- License: gpl-3.0
- Created: 2022-08-14T23:03:23.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-04-14T22:22:29.000Z (about 2 years ago)
- Last Synced: 2024-04-16T07:58:22.178Z (about 2 years ago)
- Language: Python
- Size: 993 KB
- Stars: 1
- Watchers: 7
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# repo-autoindex
Generate static HTML indexes of various repository types


[](https://release-engineering.github.io/repo-autoindex/)
[](https://pypi.org/project/repo-autoindex/)
## Overview
`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](https://release-engineering.github.io/repo-autoindex/) for more
information about the usage of `repo-autoindex`.
## Changelog
### v1.2.1 - 2024-01-15
- Ensure directories always appear first in indexes.
### v1.2.0 - 2023-09-22
- Support streamed fetching to reduce memory usage when fetching large files.
### v1.1.2 - 2023-09-18
- Add `py.typed` to make package PEP 561 compliant / enable downstream type-checking.
### v1.1.1 - 2023-04-12
- Fix handling of kickstart repositories with no checksums in treeinfo.
### v1.1.0 - 2023-04-04
- Added limited support for kickstart repositories.
### v1.0.2 - 2022-10-21
- Reduced memory usage when handling large yum repositories.
### v1.0.1 - 2022-08-15
- Use correct SPDX license identifier in package metadata.
### v1.0.0 - 2022-08-15
- Initial stable release.
## License
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.