-
-
Save ags911/cea2bf1a460e4d89ae3b0c06f8460331 to your computer and use it in GitHub Desktop.
scraping-the-premier-league-website/import
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
import numpy as np | |
from bs4 import BeautifulSoup, SoupStrainer | |
import matplotlib.pyplot as plt | |
import matplotlib.ticker as tick | |
import seaborn as sb | |
from datetime import datetime | |
import re | |
import requests | |
import json | |
%matplotlib inline | |
# Display max rows and columns | |
pd.options.display.max_rows = 999 | |
pd.options.display.max_columns = 999 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment