#!/usr/bin/env python # coding: utf-8 # In[1]: import ScraperFC as sfc import traceback # In[2]: scraper = sfc.FBRef() try: out = scraper.scrape_league_table(2021, 'EPL') except: traceback.print_exc() scraper.close() out # In[3]: scraper = sfc.FBRef() try: out = scraper.scrape_adv_gk(2018, 'Ligue 1', normalize=True, player=True) except: traceback.print_exc() scraper.close() out # In[5]: scraper = sfc.Understat() try: out = scraper.scrape_game_states(2014, 'Bundesliga') except: traceback.print_exc() scraper.close() out