PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import urllib.request
from bs4 import BeautifulSoup
from html import unescape
def get_github_file(file: str) -> str:
url = "https://raw.githubusercontent.com/MarshallNekiu/SL/main/"+file
request = urllib.request.urlopen(url).read()
return unescape(str(BeautifulSoup(request , "html.parser")))
repo = get_github_file("func_def.py")
vars = get_github_file("var.py")
cls = get_github_file("classes.py")
#for i in [repo, cls, vars]: print(i)
exec(repo)
exec(vars)
exec(cls)
hello()
how()
me = very_original_name("Arthdevhal")
me.introduction()
pet = very_original_pet("Cat", "Coral")
pet.pet_does("meow")
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run