diff --git a/tweet_havester/tweepy_search.py b/tweet_havester/tweepy_search.py
index 7ebdb8a5018b53cec62d8241a28323de4a7227a2..fe18c6bc3648654673b92e870080c4ecf504944d 100644
--- a/tweet_havester/tweepy_search.py
+++ b/tweet_havester/tweepy_search.py
@@ -5,7 +5,7 @@ import couchdb
 import tweepy
 from tweepy import OAuthHandler
 from sklearn.externals import joblib
-
+import general_process as gp
 
 
 class TweetSearchHavester():
@@ -43,7 +43,6 @@ class TweetSearchHavester():
         process_db = self.couch['tweet_results']
         for tweet in tweepy.Cursor(api.user_timeline,id = user_id ).items(50):
             # save most recent tweets
-            gp = GP()
             dic = {}
             dic['_id'] = tweet.id_str
             dic['create_time'] = str(tweet.created_at)
@@ -57,6 +56,7 @@ class TweetSearchHavester():
             # print(dic)
             try:
                 p_dic = gp.data_process(dic,self.model)
+                print(p_dic)
                 if p_dic != None:
                     process_db.save(p_dic)
                 db.save(dic)
diff --git a/tweet_havester/tweepy_stream.py b/tweet_havester/tweepy_stream.py
index 7f3b438ecf0936c6d11a2f59d33f4c2aaf8e182b..c2abc3b21cf69a61b7ca01100fcefcc2cc376927 100644
--- a/tweet_havester/tweepy_stream.py
+++ b/tweet_havester/tweepy_stream.py
@@ -8,7 +8,7 @@ from tweepy import OAuthHandler
 from tweepy import Stream
 from tweepy.streaming import StreamListener
 from sklearn.externals import joblib
-import general_process as GP
+import general_process as gp
 
 class listener(StreamListener):
     def __init__(self,path):
@@ -28,7 +28,6 @@ class listener(StreamListener):
         return dic
     def on_data(self,data):
         try:
-            gp = GP()
             db = self.couch['raw_tweets']
             id_db = self.couch['user_id']
             pc_db = self.couch['tweet_results']
@@ -38,7 +37,6 @@ class listener(StreamListener):
             # print(id_doc)
             p_dic = gp.data_process(dic,self.model)
             if p_dic != None:
-                
                 process_db.save(p_dic)
             id_db.save(id_doc)
             db.save(dic)