You need to sign in or sign up before continuing.
Commit 828b6d28 authored by Francesco Poldi's avatar Francesco Poldi

Removed debug added default index names

parent 3c70fdb0
......@@ -42,6 +42,6 @@ class Config:
Pandas_type = None
Pandas = False
Search_name = "-" #for identify a records in mysql with the search it provides from. it cannot be null for DB requirements. a tweet must be in several search so the PK are tweet ID and search_name
Index_tweets = None
Index_follow = None
Index_users = None
Index_tweets = "twint"
Index_follow = "twintGraph"
Index_users = "twintUser"
......@@ -46,7 +46,6 @@ def Tweet(Tweet, config):
nLikes = 0
nReplies = 0
nRetweets = 0
print(config.Essid)
dt = "{} {}".format(Tweet.datestamp, Tweet.timestamp)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment