Skip to content

Instantly share code, notes, and snippets.

View hidayatrakhman's full-sized avatar

hidayatrakhman

View GitHub Profile
from twisted.web import server, resource
from twisted.internet import reactor
class HelloResource(resource.Resource):
isLeaf = True
def render_GET(self, request):
request.setHeader("content-type", "text/plain")
return "I am a stupid HTTP server!"