from main import app
for route in app.routes:
if hasattr(route, 'methods'):
if '/manual' in route.path:
print(f"{list(route.methods)} {route.path}")