In [1]:
import pandas as pd;
import numpy as np;
sarcastic_tweets = pd.read_csv('twitDB_sarcasm.csv', header=None, sep='\n')
regular_tweets = pd.read_csv('twitDB_regular.csv', header=None, sep='\n')
In [2]:
from nltk.corpus import stopwords
In [3]:
sarcastic_tweets['type']='sarcastic';
regular_tweets['type']='genuine';
In [22]:
# 88 88 8888o. 88 .o8888 8888o. .o88o. 888888o. 888888o. .o88o. 8888o. 888888 88
# 88 88 88 88 88 88 88 88 88 88 88 88 88 88 88 88 88 88 88 88 88 88
# 88 88 88 88 88 88 88 8888Y' 888888 88 88 88 88 88 88 88 88 88 88 8888 88
# 88 88 88 88 88 88 88 88 88 88 88 88 88 88 88 88 88 88 88 88 88 88 88
# 'Y88Y' 88 88 88 'Y8888 88 88 88 88 88 88 88 88 88 88 'Y88Y' 8888Y' 888888 888888
import re
from bs4 import BeautifulSoup
# Cleaning tweets, courtesy of Kaggle
def review_to_words( raw_review ):
# Function to convert a raw review to a string of words
# The input is a single string (a raw movie review), and
# the output is a single string (a preprocessed movie review)
#
# 1. Remove HTML
review_text = BeautifulSoup(raw_review,"lxml").get_text()
#
# 2. Remove non-letters
letters_only = re.sub("[^a-zA-Z#]", " ", raw_review)
#
letters_only = letters_only.replace('sarcasm','')
# this may not work
letters_only = re.sub(r"[rR][tT] ", "", letters_only)
# 3. Convert to lower case, split into individual words
words = letters_only.lower().split()
#
# 4. In Python, searching a set is much faster than searching
# a list, so convert the stop words to a set
stops = set(stopwords.words("english"))
#
# 5. Remove stop words
meaningful_words = [w for w in words if not w in stops]
#
# 6. Join the words back into one string separated by space,
# and return the result.
return( " ".join( meaningful_words ))
# Get the number of reviews based on the dataframe column size
num_reviews = sarcastic_tweets[0].size
# Initialize an empty list to hold the clean reviews
clean_train_tweets_sarcastic = []
# Loop over each review; create an index i that goes from 0 to the length
# of the movie review list
for i in range( 0, num_reviews ):
# Call our function for each one, and add the result to the list of
# clean reviews
clean_train_tweets_sarcastic.append( review_to_words( sarcastic_tweets[0][i] ) )
# Get the number of reviews based on the dataframe column size
num_reviews = regular_tweets[0].size
# Initialize an empty list to hold the clean reviews
clean_train_tweets_regular = []
# Loop over each review; create an index i that goes from 0 to the length
# of the movie review list
for i in range( 0, num_reviews ):
# Call our function for each one, and add the result to the list of
# clean reviews
clean_train_tweets_regular.append( review_to_words( regular_tweets[0][i] ) )
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https://t.co/hphPwdcRik'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https://t.co/dWo5WpBhxW'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https://t.co/5iubyNBFhk'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/TTBaZ5a3ie'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/uDjhjT81hl'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:198: UserWarning: "b'.'" looks like a filename, not markup. You should probably open this file and pass the filehandle into Beautiful Soup.
'"%s" looks like a filename, not markup. You should probably open this file and pass the filehandle into Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/LBB7m2MKy4'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/hPs5g5BBuA'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/zTvU7Q7zT9'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/SB4FgL45Hd'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/KMiF7bBTcm'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/5gxispCObq'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/P8kRLI3FMq'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/Io3EXmALGT'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https://t.co/MCfUnn9hh9'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/Cl7X5iywkm'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https://t.co/8wbkKTwPf2'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/ni1w7m0z1E'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/LbtrjbY5oy'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/Ojjyozt37s'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/JBE3DFolCY'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/8gzpLLN9SH'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https://t.co/2dG9cQbE7S'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/pEio7yz1PR'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/OqPKq6dODl'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/oBNO7sC52F'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/k5PnCkPtfe'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https://t.co/Dnt8Imu7ag'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/c0gIOmcQWH'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/gqvfQSnXZb'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/p23sXdLGyG'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https://t.co/fCX85QqHVx'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/8N6rMysPEg'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/W1crjtsh8Q'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/1cqspG6m3n'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/FvjeHVkGDN"'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/A78fjvwHSt'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/l3U5FwRpZG'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/F1pb334UxH'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/9DSJAUcwlv'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/Vs0sJ7vKsB'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https://t.co/hBAlVEDEDA'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/Qi0o234Ksj'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/HHjUKYJ0Aa'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:198: UserWarning: "b'..'" looks like a filename, not markup. You should probably open this file and pass the filehandle into Beautiful Soup.
'"%s" looks like a filename, not markup. You should probably open this file and pass the filehandle into Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/qEtZGItCyv'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/LhKR6LG3nN'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/NDjvFI0Zh7'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https://t.co/vkFRWVi2PA'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/Nu02qQjRG2'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/1BzrPllYxs'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/1kC3CwHJNb'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/UgegK18lJ9'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/Fnjnefmq8j'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https://t.co/QZA9uVcypL'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https://t.co/rExbYIduGV'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/jrI8axzN9f'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https://t.co/Qw8xkXmfkG'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/5phYAr9H0J'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/FVWuNTdTD5'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https://t.co/i0bN4kECyv'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/IOMi6mz1OR'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https://t.co/KDK9yRyGDd'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/NnbQ3XxDSB'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/bjDzw9kV7b'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/IOluLp0jqi'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/mcWKvJsW6F'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/VRreTVGcw2'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/YJexy8dw44'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/omQub8IwyD'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https://t.co/wboTc4R8D2'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/9sD8dz6QXR'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/9ck6UlTuFs'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/2LGJiWo6BJ'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http://t.co/v8xA3SGz2U'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/S0oLwS5N8u'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/XZmCgEVT8J'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/uVjlThLtWM'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/J7sFPGlsCN'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/4JLSMTW5gi'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/1ymGjFGMFt'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/IIchKO3bUp'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/u9nsNIwv5Y'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Iv256ISaTZ'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/gcZqPNOvIV\\n#RIPCaseyKasem'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/y2V6LRpThA'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Li30qtLAB3'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/TVzkkIkRUP'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/CpE2DV9MSd'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/AOpSX01jbC'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/3tplyp10Ol'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/wvKPnmZbNP'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/ViASR0E7dN'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/5sMCZ7hYUx'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Rc8izZQS3X'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/1vygpClwMa'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https:\\/\\/t.co\\/8SXGtNSJeB'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/gJzfcaFXnk'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/rmivBjTSte'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/md9Tb9RsMN'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/uBfBbBcYb1'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https:\\/\\/t.co\\/qbXzqYT8hS'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/sAID02kN0e'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/oQb2r30b2z'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/DjcMzaSOyT'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/zh57IADQPf'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/yOeQ4ZjiwZ'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/g5CkVRdIDm'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/7qtbb9gpCy'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https:\\/\\/t.co\\/0SfN2BWGgN'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/P9NKCtfKLE'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/8KZxZQl6cG'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/YJ3cIgNDqD'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/PHMnoI1Oqj'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/B10mIjtzt7'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/LuN5gRAUxB'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/xRcDrjkCiM'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/PM8TKas1DL'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/ai6mTfoVRP'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/dlRNLpJHWo'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/P1Gk3x3yGV'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Ztl0qvzCLj'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/QDtCNIy32o'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/IU24lVRCsr'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/HUOlYhyX2p'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/HraFzmsO2v'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/06pDapjdT7'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/zQhg8Y91pB'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/qiArctEnIh'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/WW41pORHF8'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/uUY9TQ1JWG'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/XKNqjGd5xt'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/PN1nH3F4tI'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/xFaObCxJ9P'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/IXzF2CU2yC'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/DEcZwSqzqm'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/rRJrKq5Yl0'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/XyzNx3PkGo'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/et3a52h9ik'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/OzaKfYhTIm'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/aexRusHQLW'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/UXxwMJ47ua'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/4PIGDDkni6'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/uimaNknYUP'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/KTnszC6E5z'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/kaPcGfVPpJ'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/rgJrPYfiss'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/O0EERanMqw'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/xtA05It9Dx'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/XZovW4CQh5'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/7abos7MRWO'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/RoWnKv8un0'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/uEPUAxAOmY'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/GlSFJZviwd'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/zBqPzfiINt'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/82tMOeJOim'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/TCxbo12MZu'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/S1dcnRl3Ct'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/hka7BQRiu5'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/x1p1LkrzlO'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/N2Tjfw2RSF'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/BaVy4maunU'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Lon7nLntZO'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/sKHeTRpNiK'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/JDFQa9DbYF'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/cMU8rKyuQO'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/e9YeOqGo1z'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/JKmPD8yRVQ'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/OM8oyXtxua'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/bJvDp6RNP3'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/nFIEvBzXPZ'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/BYDXbNJhWo'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/aCjWzcsjkL'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Za99vMKXOd'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/sa9jThZvYd'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/SJHI4OzhFK'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/0MlGfiUdyH'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/IATKKRgQ0t'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/5iMMnwQMH3'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/cQM2UEWJjJ'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/hNuPxes4Yw'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/mSsc0rCMyK'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/SyD947onnb'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/tUDNg9HrFN'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/eJJRcLFIbh'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/tbV2aG6wlI'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/AEUBqNSa9S'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/p2pP9L5mQh'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/96GbKXVYQY'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/TQMg2yWB8Q'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/NstEiaUXJ7'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/nu040MbMU5'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/MS4XcrdlBe'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/gNbAvl4Kv8'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/8ALFm5p7h1'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/qokSbF2vy8'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/qY838y3Cge'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/FuJWpeEbAS'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/KScLSN86Sl'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/ZsQrqt7VCG'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/sos6RGanG5'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/HkLzUT19n8'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/V9HBdeVLiF'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/2ZaL9NCbrE'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/G1YvfEJONa'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/xKyvtYnQPJ'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/EdYTBSkKn5'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/b3s1XhIPQK'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/0FX9oFjVjA'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/sU4hFzPUun'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/U5bk3wPeYY'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https:\\/\\/t.co\\/W5eHTVfQqP'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/VzvYY8Jrxp'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/b27nWcSnGA'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/SSxIB7DjWs'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/teBHJsYDee'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/LmHXW5KWHd'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/JD6XqOD8tJ'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/yhlBCdb1RM'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/MAL3cmoQB0'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/EGyQ64CKOx'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/aNdD7fAokh'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/wWXS8iAGw6'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Q6vMLStWP0'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/ufEPiFj8U9'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/4wfd3MQY9U'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/OCGphXTgxW\\n\\ud83d\\ude0e'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/oORvtdLSSg'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/O4wY48xQkp'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/R6ECNzPnzT'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/xkrhh6E613'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/SoKu3gwXq4'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/8J7XdUne06'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https:\\/\\/t.co\\/R0H1BSM4Uo'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/2tIup1ynGR'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/zaSkpusNwE'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/zjZfIh0Uet'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/CQM2Zkh1om'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/vB0gUwUn11'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/8Lya8guXU4'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/E9yo619Om3'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/AzPbuO13Ap'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/tI1Ks1BMTx'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/IIC13b6j32'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/V3XySAOtnN'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/6mmeiaU49u'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/y8BvwAVxGK'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/bcLD3n6cZ2'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/nUVANlOJSb'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/yaQKcneJ2T'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/jrPJ6A7VXm'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/dWdhFoPd7R'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Rx3cb6WDP5'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/7Vu4mz7ObE'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Vm5Fs9WNYy'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/S2PSLBx9YK'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/n26eXrfMfC'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/nGels394lA'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/IivM8fiRJP'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/lEoGEmp0ve'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/vN1qiaRNqU'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/KA5y43f6px'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/ZYN4WdUumH'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/9OlWE1DPIg'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/YoKVxQ5PKz'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/NpbLf5S4pR'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/0ATInhJn4G'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/3vuOBqAqN4'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/QTxMoXH008'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/7QXcOmA7xD'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/vWmppyDBgC'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/2RF1AQ0dML'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/SXM1i1jH7I'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https:\\/\\/t.co\\/asqVYSdjKU'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https:\\/\\/t.co\\/K2mK4oGBIV\\n\\n@Vinayak91'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/AtzzZpD2XC'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Z0jR5IFhL9'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/VVEgkn86k2'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/b0Njb1Hqln'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/5EdQvHawV4'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/DMVJ3bV9TQ'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/ikvvQuvFR7'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/RpNeJfNTts'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/w3kmkKapqn'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/XAhPU1rq7g'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/vrowlcQ8mn'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/AugTuz8hMn'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/mCy6qarAut'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/wwwAC4tN88'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/6DKzoTih9L'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/6m3wQnTYwG'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/tMA22kFMQf'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/FOqzYwVUdy'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/oypxcnRo3Y'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/999TNQSV7a'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/q6L0CN5b2e'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/zfCVpB7ftl'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/4byP8249LH'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/dxZNNgvfdd'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/XQQDOTPqaz'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/NmlbgIiluc'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/MxrPV8JVE0'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/GNbdgwllvY'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/skXvx4DP9t'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/hepd3d5GTP'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/hbR3AWE4Ay'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/gUIhOQgWdA'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/CRH1i4JsyC'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/60xRBJNnte'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/ielbwWB0mU'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/nUnxqrnyOh'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/b3AjkTVrQV'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/OXqGaEig1T'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/f9ofxrMrkz'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/thXuD7dczI'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/DL0ISeEue2'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/FaWoPfgzAe'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/EfvCo2vW8v'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https:\\/\\/t.co\\/BDpsPmVwnk'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/qOWlMtri8J'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/qrIcEIcDO4'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/54d7jvRWAN'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/mfBEYkpb6A'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/LZKxyJD4o1\\u201d'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/5jn4OINuWn'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/a2WVEsU3M4'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/LZKxyJD4o1\\u201dWEEEEEEEEEE'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/d6NQSgqiOM'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/8w5IREvx5F'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/wo4TGjcpG3'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/vWou9PqIpb'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/LtoBudXsoE'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/8utcDb61u2'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/LqhmFgqXXd'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/G6yE08jCMO'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/eevJsEuj4c'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/cFKWiiLcQr'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/dNOiCh8IZz'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/ehyNxsCJQ8'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/4xJs6yGgGX'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/325YeBwGej'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/i8WyIw3YC5'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/tjKBO43lJg'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Mvc8jMk2ap'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/X25TTlDSCO'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/GQsRnpDhTs'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/CBZx8k7gFX'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/osU6mOlxf1'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/UkBGMRoVgU'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/KSqreocVPI'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/TxVcKbUslg'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/ByeEPiPuzP'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/4mEPG2eOaL'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/q4PrsqLhR7'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/ITrIU19Ca8'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https:\\/\\/t.co\\/8sWK5E35xV'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/qYIsULgBV7'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/jfhNG5UPsV'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/hzdDInZFUg'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/F5kjYGcYzG'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/27I6o5rmsD'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/1nDZrBFC8W'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/nGSMV0Ni6N'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/08LJB0CtdN'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/DurxmTEbfC'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/7dcIWMczaJ'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/DoPCsPf35k'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/0Zs4FTOJbm'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Tyr6LcCv4g'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/C6LT9VmFff'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/KZaIm4VIvS'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/PR7thyYn6d'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/AnFBSnBGCG'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/gsq7CK5hYh'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/h3bRTfAtzU'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/L1L44cFhTY.before.the.ragnar.kjartansson.show.closes.'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/KiScmLwOzV'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/01cd9BCtUT'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Lq1ri6H3WQ'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/EYbLXV16P2'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/3iT1o1mq03'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/umsJwURldj'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/zUHUk1uhE7'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/kmsU8Nt2XR'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/oZtGsmUFZX'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/b28qTdEpL5'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/b5zJR9DalW'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/J1I15izVj2'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/0XWeLPBB3K'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/5F7q3DbWOL'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Bv2yStQ0fa'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/KavB7uDJ1L'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/qrwFBpjIdS'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/mGJ1q8ISKO'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Q1voumSRaQ'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Uwt5Bgulf0'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/90yJASGBUD'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https:\\/\\/t.co\\/U3SnHEJbe3'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https:\\/\\/t.co\\/ite7lFDDZ3'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/WgN5nqO0WZ'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/sIUd9r47oP'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/WtUlmD5J27'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/WWJYmfaxa1'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/9kwvFaNFBx'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/P4o30wIJ2Y'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/ODYBc5FwPw'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/xsRJ8JpSIK'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/HofksDs4pq'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/jD8hQia3i4'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/YYYvQUU1IK'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/ybWvsBOLky'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/fzjKN3H3Ba'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/nQlvbfNxQZ'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/JgyDg3hhR8'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Mgu5C5d7u0'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/z7p18bFuiY'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/P2Rbec4MNk'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/1YcvKCzITO'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/fVOtPXW34w'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/qbVAk0Jypl'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/kQHsNyKt27'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/rCkncdHCY1'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/o9JcEWAR8f'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/4WJVuItScG'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/uqHuv7s8t3'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https:\\/\\/t.co\\/cTxV7kVRPD'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/UbD7oB3zZP'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/5jDUfBJhus'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/ZZfIb8EXha'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/FOChFWLvha'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/fc1gO2gzU3'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/CNiFBBcUVV'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/l8VAUebJhs'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/eH9hipy6pi'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/mDpE8UPJnI'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/AEeyCFPfGr'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/jWGiaXRGLQ'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Cv26m4Mxqp'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/kd7Z23NdQH'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/DB122Dm72s'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/cj5ia8xnmO'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/KifmSxVbRX'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https:\\/\\/t.co\\/rplwot84IG'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/eBpRzsOT5q'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/h7Iy6tjwHh'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/9qAFCYaUY6'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/YBaVZV7U2M'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/ctmOg8Azv7'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Y9iGLtedgL'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/RTnxlGQygd'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/fpif4gvX9v'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/tjJbEzJuHB'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/YvVaiiSnlv'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/CiMOKuLiNH'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/OSxtXuPVns'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/wCvGyqqpF1'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https:\\/\\/t.co\\/hRd7F7NZEK'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/RFKCRdPBxB'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/U4ajHu6nqU'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/47OdMHcTwo'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/OSdJp6uU86'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/6cDApebNoM'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/uBzgHo1Fnx'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/jeYhx0THWZ'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/A9YNIbtw8v'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/zwMgRgiAp7'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/B9MRVMiXQP'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/7AAJUgqBay'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/hIJ7a3Ywrh'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/bAftjIYEYA'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/C6jEWzN1pR'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/urtlGaSZYB'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/CdfLPbm7vG'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/oe0wOJov0b'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/jlE3dJYFwA'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/EkAHgGcrgR'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/lOrlIGZmVd'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/rPh4TxUGhO'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/ctVSgerwtJ'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/lnQBnlh1Pu'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Ns0mRWcBnc'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/ivwMcRAKfY'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/GbMoAeA3fB'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/7KfKW2AAuK'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/PmomOs9CJI'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/S3CeqvhoGn'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/OM89AUgGjq'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/wni3gkJSpK'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'https:\\/\\/t.co\\/8fvko21PEt'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/1y9iwOWPjl'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Y8PwsHZHT3'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/iGrErNJQcH'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/R8BmDRR9lf'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/YIJSCGK2SP'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/5xVa0LiFu2'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/rCpUlxsJt1'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/vi9tYsOWy1'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Y4OfRdajUB'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/nawZ2YSfPv'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/iN9Fjuf9LR'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/hfLARhOl3r'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/FQmsa3uAFX'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Ox51ASPgcw'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/Ob7DzkyzbD'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/YDLXk4bLP9'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/RJyavj2LoJ'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/mHussnKhzp'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
/Users/joseph/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:207: UserWarning: "b'http:\\/\\/t.co\\/dBjSkLLD2J'" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.
'"%s" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client to get the document behind the URL, and feed that document to Beautiful Soup.' % markup)
In [23]:
sarcastic_tweets_parsed = [n.replace('sarcasm','') for n in clean_train_tweets_sarcastic]
# sarcastic_tweets_parsed = [n.replace]
In [ ]:
from sklearn.feature_extraction.text import CountVectorizer
# Initialize the "CountVectorizer" object, which is scikit-learn's
# bag of words tool.
vectorizer = CountVectorizer(analyzer = "word", \
tokenizer = None, \
preprocessor = None, \
stop_words = None)
# fit_transform() does two functions: First, it fits the model
# and learns the vocabulary; second, it transforms our training data
# into feature vectors. The input to fit_transform should be a list of
# strings.
train_data_features_sarcastic = vectorizer.fit_transform(clean_train_tweets_sarcastic)
# Numpy arrays are easy to work with, so convert the result to an
# array
train_data_features_sarcastic = train_data_features_sarcastic.toarray()
In [ ]:
train_data_features_sarcastic.nonzero()
In [ ]:
len(vectorizer.get_feature_names())
In [ ]:
from nltk.stem.porter import *
ps = PorterStemmer()
sarcastic_tweets_stemmed=[];
for tweet in range(0,len(sarcastic_tweets_parsed)):
newTweet=[];
for word in sarcastic_tweets_parsed[tweet].split(" "):
newTweet.append(ps.stem(word));
sarcastic_tweets_stemmed.append(" ".join(newTweet));
In [ ]:
sarcastic_tweets_stemmed
In [ ]:
from sklearn.feature_extraction.text import CountVectorizer
# Initialize the "CountVectorizer" object, which is scikit-learn's
# bag of words tool.
vectorizer = CountVectorizer(analyzer = "word", \
tokenizer = None, \
preprocessor = None, \
stop_words = None)
# fit_transform() does two functions: First, it fits the model
# and learns the vocabulary; second, it transforms our training data
# into feature vectors. The input to fit_transform should be a list of
# strings.
train_data_features_sarcastic = vectorizer.fit_transform(sarcastic_tweets_stemmed)
# Numpy arrays are easy to work with, so convert the result to an
# array
train_data_features_sarcastic = train_data_features_sarcastic.toarray()
vectorizer.get_feature_names()
In [ ]:
len(vectorizer.get_feature_names())
In [ ]:
from sklearn import tree
X = [[0, 0], [1, 1]]
Y = [0, 1]
clf = tree.DecisionTreeClassifier()
clf = clf.fit(X, Y)
In [ ]:
BeautifulSoup(" #endfathersday ","lxml").get_text()
Content source: thisisbasil/SarcasmDetectionTwitter
Similar notebooks: