Preguntas etiquetadas con attributeerror


14
AttributeError: el objeto 'módulo' no tiene atributo
Tengo dos módulos de python: a.py import b def hello(): print "hello" print "a.py" print hello() print b.hi() b.py import a def hi(): print "hi" Cuando corro a.py, obtengo: AttributeError: 'module' object has no attribute 'hi' ¿Qué significa el error? ¿Cómo lo soluciono?

5
AttributeError (“el objeto 'str' no tiene atributo 'read'”)
En Python obtengo un error: Exception: (<type 'exceptions.AttributeError'>, AttributeError("'str' object has no attribute 'read'",), <traceback object at 0x1543ab8>) Código de Python dado: def getEntries (self, sub): url = 'http://www.reddit.com/' if (sub != ''): url += 'r/' + sub request = urllib2.Request (url + '.json', None, {'User-Agent' : 'Reddit desktop client …

8
__getattr__ en un módulo
¿Cómo se puede implementar el equivalente de a __getattr__en una clase, en un módulo? Ejemplo Al llamar a una función que no existe en los atributos estáticamente definidos de un módulo, deseo crear una instancia de una clase en ese módulo e invocar el método con el mismo nombre que …

16
¿Por qué Python 3.6.1 arroja AttributeError: el módulo 'enum' no tiene el atributo 'IntFlag'?
Acabo de instalar Python 3.6.1 para MacOS X Cuando intento ejecutar la consola (o ejecutar cualquier cosa con Python3), aparece este error: AttributeError: module 'enum' has no attribute 'IntFlag' $ /Library/Frameworks/Python.framework/Versions/3.6/bin/python3 Failed to import the site module Traceback (most recent call last): File "/usr/local/Cellar/python3/3.6.1/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site.py", line 544, in <module> main() File …

3
AttributeError: el objeto 'módulo' no tiene atributo 'urlretrieve'
Estoy tratando de escribir un programa que descargue mp3 de un sitio web y luego los junte, pero cada vez que intento descargar los archivos, aparece este error: Traceback (most recent call last): File "/home/tesla/PycharmProjects/OldSpice/Voicemail.py", line 214, in <module> main() File "/home/tesla/PycharmProjects/OldSpice/Voicemail.py", line 209, in main getMp3s() File "/home/tesla/PycharmProjects/OldSpice/Voicemail.py", line …

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.