Commit f354983c authored by Cody Zacharias's avatar Cody Zacharias Committed by GitHub

1.1.3 Update

parent 2fe92365
from . import favorites, follow, profile, search
from asyncio import get_event_loop
def run(x):
get_event_loop().run_until_complete(x)
def Favorites(config):
config.Favorites = True
run(favorites.Favorites(config).main())
def Followers(config):
config.Followers = True
run(follow.Follow(config).main())
def Following(config):
config.Following = True
run(follow.Follow(config).main())
def Profile(config):
config.Profile = True
run(profile.Profile(config).main())
def Search(config):
config.TwitterSearch = True
run(search.Search(config).main())
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