Skip to content

Instantly share code, notes, and snippets.

@modos
Created August 9, 2022 19:34
Show Gist options
  • Save modos/71e353e5021685fb74b8c6ca74128d09 to your computer and use it in GitHub Desktop.
Save modos/71e353e5021685fb74b8c6ca74128d09 to your computer and use it in GitHub Desktop.
chesstml
from bs4 import BeautifulSoup
def process(path):
file = open(path)
soup = BeautifulSoup(file)
x = soup.find_all('a')
return len(x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment