DEV Community

Discussion on: A Python Program that Tweets Fetched Data from the icanhazdadjoke.com

Collapse
 
josheriff profile image
Jose

Hey you import like this:

from Twython import Twython

but the first 'Twython' cannot be capitalize:

must be:

from twython import Twython

Collapse
 
highcenburg profile image
Vicente G. Reyes • Edited

I didn't notice that I typed it wrong here. On my file, it's

from twython import Twython
. Thanks!