Commit 6e1212e6 authored by Francesco Poldi's avatar Francesco Poldi

Update default settings #392

parent f7ecd509
...@@ -204,6 +204,9 @@ def Favorites(config): ...@@ -204,6 +204,9 @@ def Favorites(config):
config.Favorites = True config.Favorites = True
config.Following = False config.Following = False
config.Followers = False config.Followers = False
config.Profile = False
config.Profile_full = False
config.TwitterSearch = False
run(config) run(config)
def Followers(config): def Followers(config):
...@@ -211,6 +214,10 @@ def Followers(config): ...@@ -211,6 +214,10 @@ def Followers(config):
output.clean_follow_list() output.clean_follow_list()
config.Followers = True config.Followers = True
config.Following = False config.Following = False
config.Profile = False
config.Profile_full = False
config.Favorites = False
config.TwitterSearch = False
run(config) run(config)
if config.Pandas_au: if config.Pandas_au:
storage.panda._autoget("followers") storage.panda._autoget("followers")
...@@ -224,6 +231,10 @@ def Following(config): ...@@ -224,6 +231,10 @@ def Following(config):
output.clean_follow_list() output.clean_follow_list()
config.Following = True config.Following = True
config.Followers = False config.Followers = False
config.Profile = False
config.Profile_full = False
config.Favorites = False
config.TwitterSearch = False
run(config) run(config)
if config.Pandas_au: if config.Pandas_au:
storage.panda._autoget("following") storage.panda._autoget("following")
...@@ -243,13 +254,21 @@ def Lookup(config): ...@@ -243,13 +254,21 @@ def Lookup(config):
def Profile(config): def Profile(config):
logme.debug(__name__+':Profile') logme.debug(__name__+':Profile')
config.Profile = True config.Profile = True
config.Profile_full = True
config.Favorites = False
config.Following = False
config.Followers = False
config.TwitterSearch = False
run(config) run(config)
def Search(config, callback=None): def Search(config, callback=None):
logme.debug(__name__+':Search') logme.debug(__name__+':Search')
config.TwitterSearch = True config.TwitterSearch = True
config.Favorites = False
config.Following = False config.Following = False
config.Followers = False config.Followers = False
config.Profile = False
config.Profile_full = False
run(config, callback) run(config, callback)
if config.Pandas_au: if config.Pandas_au:
storage.panda._autoget("tweet") storage.panda._autoget("tweet")
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