This file contains 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 ScraGet import ScraGet | |
cloud = ScraGet.cloud() | |
@cloud.scan(ID="612229554",delay=1,NewThread=False) #params explained below | |
def hello(change): #change parameter is automatically passed. | |
print(change.var,":",change.value) | |
cloud.stop = True #this stops the scanning. Don't put if u want to keep scanning |
This file contains 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 ScraGet import ScraGet | |
username = ScraGet.get_user_extra() | |
user = input("Username to check: ").strip() | |
username.check_user(user) | |
if username.valid: | |
if username.taken: | |
print(f"{user} is valid but already taken") | |
else: |