This is strange. Maybe your path variables are not properly set up?
A new version of the script which works with the new archives can be found here:
Tool to check if name is taken - #31 by jabbath1987
Deprecated
I can give you the script as Python when you want? You need to have Python installed to use it of course… Do everything like above. Just save it as CheckNames.py
while True:
name = input("Enter a name to check:")
try:
import urllib.request
with urllib.request.urlopen("https://voyeur-house.tv/moments") as response:
html = response.read().decode('utf-8')
if name in html:
print("Name taken")
else:
print("Name available")
except Exception as e:
print("An error occurred:", str(e))
choice = input("Do you want to search for another name? (y/n)")
if choice.lower() != 'y':
break