File size: 211 Bytes
2cf97f7 |
1 2 3 4 5 6 7 8 9 |
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))
|