Generate autoindex-style HTML for your directory listings.
Project description
manualindex
Generate autoindex-style HTML for your directory listings.
Install
pip install manualindex
Or if you're using poetry:
poetry add manualindex
Manualindex supports Python 3.9 and above.
Usage
Manualindex can be used both as a library and as a command-line program.
CLI
python -m manualindex /path/to/dir
A Jinja template is used to generate the index.html
files. To customise the template, you'll need to pass two flags:
python -m manualindex /path/to/dir --template-path /path/to/templates --template-name mytemplate.html.j2
For this example to work, there must be a file named mytemplate.html.j2
inside /path/to/templates
.
Due to how the URL generation works, if your directory listings are not at the root of your domain, you'll need to pass
the base URL path. For example, if your base URL is https://example.com/mydir/mysubdir/
, you will need the following:
python -m manualindex /path/to/dir --base-urlpath /mydir/mysubdir/
You can customise the date format:
python -m manualindex /path/to/dir --date-format '%Y-%m-%d'
The default date format is %Y-%m-%d %H:%I
.
To customise the timezone of the formatted timestamps:
python -m manualindex /path/to/dir --timezone Australia/Melbourne
The default timezone is UTC.
Library
To make use of all the defaults:
from pathlib import Path
from manualindex import generate_default
generate_default(Path("/path/to/dir"))
To customise the template generation options, but use the default template:
from pathlib import Path
from manualindex import default_template, generate
generate(
Path("/path/to/dir"),
default_template,
base_urlpath="/mydir/mysubdir/",
date_format = "%Y-%m-%d",
date_tz="Australia/Melbourne",
)
The second parameter to generate()
accepts any Jinja Template
object, so you have full control over the output.
Manualindex makes no assumptions about where the template comes from.
License
The code is available under the GPL Version 3.
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
File details
Details for the file manualindex-1.0.1.tar.gz
.
File metadata
- Download URL: manualindex-1.0.1.tar.gz
- Upload date:
- Size: 19.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2374427e7d130f1131b02f277eb26b0dbb797c2904625848d862011c7a9f4b76 |
|
MD5 | 67edb3c50a5213c146bcabe3b8aee7c2 |
|
BLAKE2b-256 | 88adf47d341057d39b9a4deb3ea3ee943f8b440b2e406608de9c7a33991f4f43 |
File details
Details for the file manualindex-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: manualindex-1.0.1-py3-none-any.whl
- Upload date:
- Size: 19.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 10b4efab42db8f7d06d7d9ce3b23bedb39aadb66d4cb886251e82590f7357bc1 |
|
MD5 | 41eacf5c21f94568a8d2e72aec08a2cb |
|
BLAKE2b-256 | 200817ba264ed34b8243329e4610076bec6dfd20e23d7dfc4aedfa3e3e75c606 |