Is there any good simple templating library for Python?

I don't need full blown templating engines like Jinja or others. I wanted to use github.com/cesbit/trender, but it doesn't support attributes. pypi.org/project/Texthon/ looks kiiiinda good, but I'm not sure, it's way too complex for my usecase

All I need is a renderer that can do:
* conditional logic
* maybe loops over sequences
* access attributes of classes
* no templates inside templates (like in Texthon)
* like trender but better