Want to be cool?
Here's how to use the API!
http://printer.andrew.gr/api.phpwith fields
keyand
message
Example in Python:
from urllib.parse import urlencode
from urllib.request import Request, urlopen
url = 'http://printer.andrew.gr/api.php' # Set destination URL here
post_fields = {'key': 'tSz692dMZdcHCSZLBuzTAXVlaVAM9HWu6t', 'message': 'Hello!!!\nI love you very much\n\n<3<3<3'}
request = Request(url, urlencode(post_fields).encode())
json = urlopen(request).read().decode()
print(json)