Skip to content

Instantly share code, notes, and snippets.

@ags911

ags911/import.py Secret

Last active January 31, 2022 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ags911/cea2bf1a460e4d89ae3b0c06f8460331 to your computer and use it in GitHub Desktop.
Save ags911/cea2bf1a460e4d89ae3b0c06f8460331 to your computer and use it in GitHub Desktop.
scraping-the-premier-league-website/import
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