This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This will use beuaitful soup to get thet list of linux mirror sites from a linux mirror site. Usecase | |
# for me was to generate a whitelist for a proxy server. | |
import re | |
import sys | |
try: | |
import argparse | |
import requests | |
from bs4 import BeautifulSoup | |
except ImportError as e: |