Skip to content

Instantly share code, notes, and snippets.

@rotaris
Created April 22, 2011 01:05
Show Gist options
  • Save rotaris/935812 to your computer and use it in GitHub Desktop.
Save rotaris/935812 to your computer and use it in GitHub Desktop.
Django-soaplib Hello World Web Service urls.py
# See also: https://gist.github.com/935809
from django.conf.urls.defaults import *
urlpatterns = patterns(
'',
(r'^books/', 'books.views.hello_world_service'),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment