viernes, 3 de febrero de 2017

Create object and add attributes to it: Python

Creamos el objeto args y le agregamos los atributos recid y sigb64
args = SimpleNamespace()
setattr(args, 'recid', "receptor1")
setattr(args, 'sigb64', "AfGLmNB==")

Luego podemos hacer args.recid o args.sigb64


No hay comentarios:

Publicar un comentario