[Urgent] python script

Job ID: 37564992

Budget: $10 – $30 USD

hi,
i have this 2 bash script that extract subdomains from crt.sh website and anoth er from web.archive.org and i want it in python so i will given list of domains then the output is subdomains of this domains with progress bar in real time in wich line working :)
script:

crt.sh
curl -sk --insecure "https://crt.sh/?q=$1&output=json" | jq -r '.[].name_value' | sed 's/\*\.//g' | sort -u

wayback.sh
curl --insecure --silent "http://web.archive.org/cdx/search/cdx?url=*.$1/*&output=text&fl=original&collapse=urlkey" | sed -e 's_https*://__' -e "s/\/.*//" -e 's/:.*//' -e 's/^www\.//' | sed "/@/d" | sed -e 's/\.$//' | sort -u
Related categories: JavaScript Python Linux Web Scraping Shell Script