Use a variable to fetch an object attribute



Published: 2018-04-12 09:22:40 +0000
Categories: Python,

Language

Python

Description

Sometimes you want to use a variable to contain the name of an attribute that you might later want to fetch from an object. For example, if you're doing hashing operations you might want to have the algorithm name in a variable, and use that in order to trigger behaviour (rather than having a massive if block, duplicating calls).

Snippet

getattr(object,attributename)

Usage Example

# Example to grab an instance of the relevant hashlib object                   
# Using the first command line argument
import hashlib    
import sys

algo=sys.argv[1]

hashing=getattr(hashlib,algo) 

Keywords

Variable variables, attribute, variable, property,

Latest Posts


Copyright © 2022 Ben Tasker | Sitemap | Privacy Policy
Available at snippets.bentasker.co.uk, http://phecoopwm6x7azx26ctuqcp6673bbqkrqfeoiz2wwk36sady5tqbdpqd.onion and http://snippets.bentasker.i2p
hit counter