Skip to content

Instantly share code, notes, and snippets.

View nilslindemann's full-sized avatar
🤍

Nils-Hero Lindemann nilslindemann

🤍
  • Diepholz
  • 08:33 (UTC +01:00)
View GitHub Profile
@nilslindemann
nilslindemann / linkchecker.py
Last active October 31, 2023 08:27
Link Checker for the FastAPI docs
# Link checker script for https://github.com/tiangolo/fastapi
# Place it under fastapi/scripts or configure DOCS_ROOT below
import os
import re
from dataclasses import dataclass, field
from pathlib import Path
from typing import Any, Callable, Generator
Line = str