andrewyang96 / StocktwitsDataGathering

Gathering Tweet data of stocks using Stocktwits API.
3 stars 11 forks source link

urllib2 issues #2

Closed pablofernandezorg closed 7 years ago

pablofernandezorg commented 7 years ago

Currently outdated in Python 3.5

pablofernandezorg commented 7 years ago

Solution to import module in Python 3.5

try: import urllib.request as urllib2 except ImportError: import urllib2