nameof

Python function to get the name of a variable or attribute, as in C#

MIT License

Downloads
211.3K
Stars
16
Committers
1

nameof

Get the name of a variable or attribute, as in C#.

Installation

pip install nameof

Or just copy nameof.py.

Usage

from nameof import nameof
assert nameof(foo) == "foo"
assert nameof(foo.bar) == "bar"

The argument must be a variable or attribute.

Caveats

This is funky and not battle-tested, use it with caution. If anything critical depends on it working correctly the calling code should be tested.

Doesn't work in the presence of some other magic, particularly magic that modifies the AST such as pytest or birdseye.

Package Rankings
Top 13.14% on Pypi.org
Badges
Extracted from project README
Build Status Supports Python versions 3.4+, including PyPy