This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% flash.each do |type, title| %> | |
<%= render FlashComponent.new(type: type, title: title) %> | |
<% end %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
import re | |
import tweepy | |
from tweepy import OAuthHandler | |
from textblob import TextBlob | |
class TwitterClient(object): | |
''' | |
Generic Twitter Class for sentiment analysis. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
import re | |
import tweepy | |
from tweepy import OAuthHandler | |
from textblob import TextBlob | |
class TwitterClient(object): | |
''' | |
Generic Twitter Class for sentiment analysis. |