Executor
Currently beta-version is available.
Format text as you write. Use additional modules for new possibilities.
Modules
List of verified modules with the ability to download them.
List of basic commands
These commands are already built into the application.
repeat < times > < text > - repeat text n times
randomize < num 1 > < num 2 > - random between nums
summarize < numbers separated by spaces > - summarize nums
uppercase < text > - CAPS text
count < text > - counts the number of words
erase - clears the input field
info - information about the program
ip - shows the current IP address
help - list of all commands
Writing custom scripts
Write a function in Python. Be aware of possible errors. The function must always return a string type:
def ip():
try:
url = "https://api.myip.com"
with urllib.request.urlopen(url) as response:
data = response.read().decode()
json_data = json.loads(data)
ip = json_data.get("ip", "Not found")
country = json_data.get("country", "Not found")
return f"IP: {ip}, {country}"
except Exception as e:
return str(e)
At the end of the file, include the functions in the command list and, if you want, add the author's name:
COMMANDS = {
"ip": ip,
}
AUTHOR = "jjewuz"
Your module will be named like the .py file.
Other
Privacy policyAny questions? Write: admin@jjewuz.com