Skip to content

Instantly share code, notes, and snippets.

@sadkris
sadkris / main.py
Created June 2, 2024 05:17
Every PC Game without any letter
import pandas as pd
import requests
import string
import warnings
warnings.simplefilter(action='ignore', category=FutureWarning)
alphabet = string.ascii_uppercase
pageRoot = "https://en.wikipedia.org/wiki/"
gameLists = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "Numerical"]
@sadkris
sadkris / main.py
Created May 31, 2024 14:52
Every PC Game without "A" in its title
import pandas as pd
import requests
import warnings
warnings.simplefilter(action='ignore', category=FutureWarning)
pageRoot = "https://en.wikipedia.org/wiki/"
gameLists = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "Numerical"]
validGames = []