I\'d like to have access to one my model field verbose_name.
I can get it by the field indice like this
model._meta._fields()[2].verbose_name
If you want to iterate on all the fields you need to get the field:
field
for f in BotUser._meta.get_fields(): if hasattr(f, 'verbose_name'): print(f.verbose_name)