Skip to content

Instantly share code, notes, and snippets.

@mjam03
Created February 21, 2021 13:34
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
import_example_corona
from bs4 import BeautifulSoup
import datetime as dt
import io
import matplotlib.dates as mdates
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
import requests
import seaborn as sns
import sys
from urllib.request import Request, urlopen
import warnings
import zipfile
# autocomplete not working in my jupyter instances
%config Completer.use_jedi = False
# some pandas and sns preferences
sns.set()
warnings.filterwarnings('ignore')
pd.set_option('display.max_rows', 500)
pd.set_option('display.max_columns', 500)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment