urllib.request no Python 2.7

Eu posso usar o módulo urllib.request com o Python 3.1. Mas quando executo o mesmo programa usando o Python 2.7, ocorre um erro nas linhas de;

AttributeError: 'module' object has no attribute 'request'.

Acredito que esse erro ocorre porque não há nenhum módulo de solicitação no urllib para Python 2.7. Porque eu preciso usartweepy Vou ter que ficar com o Python 2.7, já que o tweepy não suporta o Python 3.

Então, como posso usar o módulo urllib.request no Python 2.7?

questionAnswers(3)

yourAnswerToTheQuestion