Ejemplo n.º 1
0
def get_account(username):
	if username.startswith('@'):
		username = username[1:]
	accounts = _twitter.get_all_accounts()
	for a in accounts:
		if a.get('username', None) == username:
			return a
	return None
Ejemplo n.º 2
0
def get_account(username):
    if username.startswith('@'):
        username = username[1:]
    accounts = _twitter.get_all_accounts()
    for a in accounts:
        if a.get('username', None) == username:
            return a
    return None
Ejemplo n.º 3
0
def get_all_accounts():
	return _twitter.get_all_accounts()
Ejemplo n.º 4
0
def get_all_accounts():
    return _twitter.get_all_accounts()