Skip to content

Instantly share code, notes, and snippets.

@mjam03
Created February 21, 2021 13:34
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 mjam03/761d017e821b62c3adf2d4cf1b7477d3 to your computer and use it in GitHub Desktop.
Save mjam03/761d017e821b62c3adf2d4cf1b7477d3 to your computer and use it in GitHub Desktop.
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