It would be nice to support more keywords such as WHERE and use uppercase to avoid confusion. The use case would be for conditional query manipulation, e.g.
country_filter = "WHERE country = %s" if country else ""
query = f"""--sql
SELECT * FROM projects
{country_filter}
"""