Skip to content

Instantly share code, notes, and snippets.

@xaqq
Created July 5, 2013 15:43
Show Gist options
  • Save xaqq/5935397 to your computer and use it in GitHub Desktop.
Save xaqq/5935397 to your computer and use it in GitHub Desktop.
Python twisted blog
from twisted.Resource import Resource
class myResource(Resource):
def my_render_OPTIONS(self, request):
request.setHeader("Allow-Access-Control-Origin", "mydomain.com"
request.setHeader("Allow-Access-Control-Methods", "DELETE")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment