Source code for ocdsindex.allow
"""``allow_`` methods that return whether to crawl a file."""
import os
[docs]
def allow_sphinx(root, _file):
"""
Allow all files, except the 404 page.
:param str root: a directory path
:param str file: a file basename
:returns: whether to crawl the file
:rtype: bool
"""
return os.path.split(root)[1] != "404"