Commit 096d7c97 authored by Francesco Poldi's avatar Francesco Poldi

Updated run.py for new functions

parent ed771bc9
...@@ -29,7 +29,7 @@ class Twint: ...@@ -29,7 +29,7 @@ class Twint:
if self.config.Store_object: if self.config.Store_object:
logme.debug(__name__+':Twint:__init__:clean_follow_list') logme.debug(__name__+':Twint:__init__:clean_follow_list')
output.clean_follow_list() output._clean_follow_list()
if self.config.Pandas_clean: if self.config.Pandas_clean:
logme.debug(__name__+':Twint:__init__:pandas_clean') logme.debug(__name__+':Twint:__init__:pandas_clean')
...@@ -224,7 +224,6 @@ def Favorites(config): ...@@ -224,7 +224,6 @@ def Favorites(config):
def Followers(config): def Followers(config):
logme.debug(__name__+':Followers') logme.debug(__name__+':Followers')
output.clean_follow_list()
config.Followers = True config.Followers = True
config.Following = False config.Following = False
config.Profile = False config.Profile = False
...@@ -238,11 +237,10 @@ def Followers(config): ...@@ -238,11 +237,10 @@ def Followers(config):
storage.panda._autoget("user") storage.panda._autoget("user")
if config.Pandas_clean and not config.Store_object: if config.Pandas_clean and not config.Store_object:
#storage.panda.clean() #storage.panda.clean()
output.clean_follow_list() output._clean_follow_list()
def Following(config): def Following(config):
logme.debug(__name__+':Following') logme.debug(__name__+':Following')
output.clean_follow_list()
config.Following = True config.Following = True
config.Followers = False config.Followers = False
config.Profile = False config.Profile = False
...@@ -256,7 +254,7 @@ def Following(config): ...@@ -256,7 +254,7 @@ def Following(config):
storage.panda._autoget("user") storage.panda._autoget("user")
if config.Pandas_clean and not config.Store_object: if config.Pandas_clean and not config.Store_object:
#storage.panda.clean() #storage.panda.clean()
output.clean_follow_list() output._clean_follow_list()
def Lookup(config): def Lookup(config):
logme.debug(__name__+':Lookup') logme.debug(__name__+':Lookup')
......
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