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
import winsound | |
import os | |
import random | |
from colorama import Fore, Back, Style | |
def printc(text): | |
print(Fore.RED + text) | |
print(Fore.WHITE) | |
def shuffledir(dir, repeat): | |
#shuffle |
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
from bs4 import BeautifulSoup | |
import random | |
import requests | |
import re | |
class crawler(): | |
def findurls(self, limit, seed): | |
cache = seed | |
history = [] | |
for idx, currenturl in enumerate(cache): |
NewerOlder