import requests
from bs4 import BeautifulSoup
name_list = ['Joshtwery']
for a in name_list:
    links = ['http://w...content-available-to-author-only...o.com/user/Joshtwery?page_num=0&type=all&sort=updated']
    for link in links:
        print link
        res = requests.get(link)

        soup = BeautifulSoup(res.text.encode("utf-8"))
        fol_table = soup.findAll('div',{'class':'Titleinner'})#news & url
        print fol_table#check point
        for a_link in fol_table:
            a_links =str([tag['href']for tag in a_link.findAll('a',{'href':True})])[1:-1]
            a_links =([tag['href']for tag in a_link.findAll('a',{'href':True})])