temp_markup / test_handler.py
Jasper Lu
Add initial
2cf97f7
raw
history blame contribute delete
No virus
211 Bytes
from handler import EndpointHandler
my_handler = EndpointHandler(path=".")
html_string = "<html> <head> <title>Page Title</title> </head> </html>"
payload = {"inputs": html_string}
print(my_handler(payload))